up vote 23 down vote favorite
12
share [g+] share [fb]

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?

link|improve this question

73% accept rate
assuming you meant the default windows shell, I've retagged your post for a little bit of more clarity – David Schmitt Sep 26 '08 at 9:54
Please also specify what version of Windows you are using. – jop Sep 26 '08 at 11:15
feedback

11 Answers

up vote 23 down vote accepted

This lists all the files (and only the files) in the current directory:

for /r %i in (*) do echo %i

Also if you run that command in a batch file you need to double the % signs.

for /r %%i in (*) do echo %%i

(thanks @agnul)

link|improve this answer
I tried your command , but it's not working . – Vhaerun Sep 26 '08 at 9:58
I get a syntax error on that also. – Sam Meldrum Sep 26 '08 at 9:59
It might depend on what OS you are using, i.e. XP/Vista/2000 might support different command line arguments. – RickL Sep 26 '08 at 10:21
1  
Also if you run that command in a batch file you need to double the % signs. See the help for "for". – agnul Sep 29 '08 at 10:33
1  
If you do not want to use this recursively, make sure you take out the /r – jocull Nov 29 '10 at 19:10
show 1 more comment
feedback

Iterate through...

  • ...files in current dir: for %file in (.\*) do @echo %file
  • ...subdirs in current dir: for /D %subdir in (.\*) do @echo %subdir
  • ...files in current and all subdirs: for /R %file in (.\*) do @echo %file
  • ...subdirs in current and all subdirs: for /R /D %subdir in (.\*) do @echo %subdir

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

link|improve this answer
feedback

This for-loop will list all files in a directory.

pushd somedir
for /f "delims=" %%f in ('dir /b /a-d-h-s') do echo %%f
popd

"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.

  • Any use of "/a" would list everything, including hidden and system attributes.
  • "/ad" would only show subdirectories, including hidden and system ones.
  • "/a-d" argument eliminates content with 'D'irectory attribute.
  • "/a-d-h-s" will show everything, but entries with 'D'irectory, 'H'idden 'S'ystem attribute.

If you use this on the commandline, remove a "%".

Hope this helps.

link|improve this answer
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 % characters in front of each variable reference.

From a command line:

FOR %i IN (*) DO ECHO %i

From a batch file:

FOR %%i IN (*) DO ECHO %%i
link|improve this answer
feedback

%1 refers to the first argument passed in and can't be used in an iterator.

Try this:

@echo off
for %%i in (*.*) do echo %%i
link|improve this answer
You're right. I've tried in immediate mode to check the FOR syntax and pasted the line straight into the answer forgetting about parameters :-) – Axeman Sep 26 '08 at 9:55
feedback

In bash, you might do something like this:

for fn in *; do
    if [ -d $fn ]; then
        echo "$fn is a directory"
    fi
    if [ -f $fn ]; then
        echo "$fn is a file"
    fi
done

I just noticed that you asked about batch, which I misread as bash. This answer may therefore be not appropriate to your question.

link|improve this answer
2  
Bwahahaha! :-) +1 – Chris Jester-Young Sep 26 '08 at 9:51
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:

Dim fileSystemObject
Set fileSystemObject = CreateObject("Scripting.FileSystemObject")

Dim mainFolder
Set mainFolder = fileSystemObject.GetFolder(myFolder)

Dim files
Set files = mainFolder.Files

For Each file in files
...
Next

Dim subFolders
Set subFolders = mainFolder.SubFolders

For Each folder in subFolders
...
Next

Check FileSystemObject on MSDN.

link|improve this answer
I would have used perl to do this. Unfortunately , it's not up to me. – Vhaerun Sep 26 '08 at 10:00
Some old application? Sad things. – Biri Sep 26 '08 at 10:10
An idiot developer saw batch files and thought that they were the cure for all of our problems . – Vhaerun Sep 26 '08 at 11:19
feedback
for %1 in (*.*) do echo %1

Try "HELP FOR" in cmd for a full guide

This is the guide for XP commands. http://www.ss64.com/nt/

link|improve this answer
1  
@Axeman: +1, add a link to this site for a definitive online reference: ss64.com/nt. – sixlettervariables Sep 26 '08 at 11:31
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

dir /b /a-d > AllFilesInCurrentDirectorylist.txt
link|improve this answer
feedback

Try this to test if a file is a directory.

FOR /F "delims=" %I IN ('DIR /B /AD "filename" 2^>^&1 ^>NUL') DO IF "%I" == "File Not Found" ECHO Not 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".

link|improve this answer
does that work on different language versions of windows? – didito Sep 20 '11 at 11:14
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 file-list.txt. I tried

for /f "tokens=*" %%f in ('type file-list.txt') do echo %%f` 

but that failed.

Then, I tried the below and it works ^^

for /f "tokens=*" %%f in ('more ^< file-list.txt') do echo %%f
link|improve this answer
1  
What does this have to do with the original question? – Cheran Shunmugavel Nov 20 '11 at 7:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.