for
Verified for current stable LTS
For Command: Iterate Directory List Windows
Use for iterate directory list windows with For. Exact CLI syntax to iterate directory list windows using For.
When to use this: Use for iterate directory list windows with For.
Command Syntax
for /d %<variable> in (<path\to\directory1.ext path\to\directory2.ext ...>) do (<echo Loop is executed>) for /d %<variable> in (<path/to/directory1.ext path/to/directory2.ext ...>) do (<echo Loop is executed>) Live Command Builder
Final Command
for /d %<variable> in (<path\to\directory1.ext path\to\directory2.ext ...>) do (<echo Loop is executed>) Command Breakdown
for is the base executable for this command.
FAQ
Purpose: Exact syntax to iterate directory list windows using For.
Test path: Replace placeholders and run destructive commands in a disposable workspace first.
Flag behavior: Tool version, platform, and shell can change behavior.
Improve This Command
Suggest a correction, safer default, or version-specific note for this entry.
Related Operations
For Command: Execute Commands For Each Specified Item
for <variable> in <item1 item2 ...>; do <echo "Loop is executed">; done For Command: Iterate Over A List Of Directories for <variable> in <path/to/directory1/ path/to/directory2/ ...>; do <echo "Loop is executed">; done For Command: Iterate Over A List Of Files for <variable> in <path/to/file1 path/to/file2 ...>; do <echo "Loop is executed">; done For Command: Iterate Over A Range Of Numbers for <variable> in {<from..to..step>}; do <echo "Loop is executed">; done For Command: Iterate Through Command Line Parameters for <variable>; do <echo $variable>; done