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?
|
|
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 |
|||
|
|
|
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. |
||||
|
|
|
There is a subtle difference between running From a command line:
From a batch file:
|
||||
|
|
|
%1 refers to the first argument passed in and can't be used in an iterator. Try this:
|
|||
|
|
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. |
|||||
|
|
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. |
|||||||||
|
Try "HELP FOR" in cmd for a full guide This is the guide for XP commands. http://www.ss64.com/nt/ |
|||||
|
|
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
|
|||
|
|
|
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". |
|||
|
|
|
I use the xcopy command with the /L option to get the file names. So if you want to get either a directory or all the files in the subdirectory you could do something like this:
I just use the c:\ as the destination because it always exists on windows systems and it is not copying so it does not matter. if you want the subdirectories too just use /s option on the end. You can also use the other switches of xcopy if you need them for other reasons. |
||||
|
|