Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
100 個のファイルがあり、各ファイルの最後に行を追加する必要があります。
Notepad ++でこれを行う方法はありますか?
バッチファイルを使用することをお勧めします
FOR %%G IN (*) DO echo "myline" >> %%G "C:\myDir"
myDir 内のすべてのファイルに myline を追加する必要があります