Tag Archives: MS Windows

MS Windows Batch Files – Doing Something to Each File in a Directory

Again, a note primarily for my reference… To process each file in a directory using a batch file, the syntax would be for %%f in (*.txt) do type %%f From the command line it would be for %f in (*.txt) … Continue reading

Posted in Technology | Tagged , | Leave a comment