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?
feedback
|
|
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) | |||||||||||||||
feedback
|
|
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 | |||
|
feedback
|
|
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. | ||||
|
feedback
|
|
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 From a command line:
From a batch file:
| ||||
|
feedback
|
|
%1 refers to the first argument passed in and can't be used in an iterator. Try this:
| |||
feedback
|
|
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. | |||||
feedback
|
|
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. | |||||||
feedback
|
Try "HELP FOR" in cmd for a full guide This is the guide for XP commands. http://www.ss64.com/nt/ | |||||
feedback
|
|
The following code creates a file Named "AllFilesInCurrentDirectorylist.txt" in the current Directory, which contains the list of all files (Only Files) in the current Directory. Check it out
| |||
|
feedback
|
|
Try this to test if a file is a directory.
This only will tell you whether a file is NOT a directory, which will also be true if the file doesn't exist, so be sure to check for that first if you need to. The carats (^) are used to escape the redirect symbols and the file listing output is redirected to NUL to prevent it from being displayed, while the DIR listing's error output is redirect to the output so you can test against DIR's message "File Not Found". | |||
|
feedback
|
|
@Marco I love your answer most though it is not the accepted one! I would like to interate a list of file stored in a text file, says
but that failed. Then, I tried the below and it works ^^
| |||||
feedback
|