Saved Bookmarks
| 1. |
Solve : How to add some text to all txts in directory?? |
|
Answer» How to add some text to all txts in directory? for /f "delims=="" %%A in ('dir /b *.txt') do echo blah blah blah >> %%AI think 'double "' is the problem.. --- for /f "delims=="" --- --------------------------------------------------------------------------------------------- for /f "delims==" %%A in ('dir /b *.txt') do echo blah blah blah >> %%A |
|