How could I iterate over each file in a directory using for? And how could I tell if a certain entry is a directory or if it's just a file?
|
3
|
|||||
|
|
|
This lists all the files (and only the files) in the current directory:
Also if you run that command in a batch file you need to double the % signs.
(thanks @agnul) |
||||||||
|
|
|
Iterate through...
Unfortunately I did not find any way to iterate over files and subdirs at the same time. Just use cygwin with its bash for much more functionality. Apart from this: Did you notice, that the buildin help of MS Windows is a great resource for descriptions of cmd's command line syntax? Also have a look here: http://technet.microsoft.com/en-us/library/bb490890.aspx |
||
|
|
|
|
%1 refers to the first argument passed in and can't be used in an iterator. Try this:
|
||
|
|
|
There is a subtle difference between running the FOR from command line and from a batch file. In a batch file, you need to put two % characters in front of each variable reference. From a command line:
From a batch file:
|
||
|
|
|
|
In bash, you might do something like this:
I just noticed that you asked about batch, which I misread as bash. This answer may therefore be not appropriate to your question. |
||
|
|
|
Try "HELP FOR" in cmd for a full guide This is the guide for XP commands. http://www.ss64.com/nt/ |
|||
|
|
|
I would use vbscript (Windows Scripting Host), because in batch I'm sure you cannot tell that a name is a file or a directory. In vbs, it can be something like this:
Check FileSystemObject on MSDN. |
||
|
|
This for-loop will list all files in a directory.
"delims=" is useful to show long filenames with spaces in it.... '/b" show only names, not size dates etc.. Some things to know about dir's /a argument.
If you use this on the commandline, remove a "%". Hope this helps. |
|||
|
|
