vote up 4 vote down star

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.

flag

2 Answers

vote up 7 vote down check

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
link|flag
vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

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