Mar 30, 2007
Act on a set of files at the Windows command prompt
If you've got to perform an action on a bunch of files at the command line, you want to master the
for statement. The Daily Cup of Tech web site explains how the command:
Iterates through all the zip archives in a folder and extracts them. If you're starting to get your feet wet automating tasks with batch scripts, this is a nicefor /R %z in (*.zip) do unzip "%z"
for primer.
No Comments, Comment or Ping
Reply to “Act on a set of files at the Windows command prompt”