up vote 27 down vote favorite
9
share [g+] share [fb]

How do you iterate over each file in a directory with a .bat or .cmd file?

For simplicity please provide an answer that just echo's the filename or file path.

link|improve this question

feedback

2 Answers

up vote 39 down vote accepted

Command line usage:

for /f %f in ('dir /b c:\') do echo %f

Batch file usage:

for /f %%f in ('dir /b c:\') do echo %%f

Update: if the directory contains files with space in the names, you need to change the delimiter the for /f command is using. for example, you can use the pipe char.

for /f "delims=|" %%f in ('dir /b c:\') do echo %%f

Update 2: (quick one year and a half after the original answer :-)) If the directory name itself has a space in the name, you can use the usebackq option on the for:

for /f "usebackq delims=|" %%f in (`dir /b "c:\program files"`) do echo %%f

And if you need to use output redirection or command piping, use the escape char (^):

for /f "usebackq delims=|" %%f in (`dir /b "c:\program files" ^| findstr /i microsoft`) do echo %%f
link|improve this answer
I tried to enumerate the files in a current directory with this command [ for /f %%f in ('dir /b .') do echo %%f ].. Unfortunately files with spaces had their name printed up to their first space.. ? Thanks – lb. Dec 7 '09 at 0:07
At least for some commands, the file variable should be enclosed in double quotes. – Jirka-x1 Jan 3 '11 at 14:45
feedback

Use

for /r path %%var in (*.*) do some_command %%var

with:

  • path being the starting path.
  • %%var being some identifier.
  • *.* being a filemask OR the contents of a variable.
  • some_command being the command to execute with the path and var concatenated as parameters.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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