vote up 0 vote down star

I just want to know how can I get all the names of the folders in a current directory. For example in my current directory I have three folders:

stackoverflow
reddit
codinghorror

Then when I execute my batch script all the three folders will print in the screen.

How can I achieve this?

flag

3 Answers

vote up 4 vote down check

Using batch files:

for /d %%d in (*.*) do echo %%d

If you want to test that on the command line, use only one % sign in both cases.

link|flag
1  
"for /d %%d in (.) do @echo %%d" is prettier. – Peter Mortensen Sep 28 at 14:42
You mean for /d %%d in (*) do @echo %%d? – Helen Sep 28 at 15:18
@Helen: yes, the asteriskes apparently were swallowed. – Peter Mortensen Sep 28 at 19:42
They caused an italic dot :-) You have to enclose your code in ` :-) – Johannes Rössel Oct 21 at 21:37
vote up 4 vote down

On Windows, you can use:

dir /ad /b

/ad will get you the directories only
/b will present it in 'bare' format

EDIT (reply to comment):

If you want to iterate over these directories and do something with them, use a for command:

for /F "delims=" %%a in ('dir /ad /b') do (
   echo %%a
)
  • note the double % - this is for use in a batch, if you use for on the command line, use a single %.
  • added the resetting of default space delims in response to @Helen's comment
link|flag
hi akf, thanks. but i want to use the name of the folder. – sasayins Sep 28 at 14:08
sasayins, i have updated based on your comment, take a look. – akf Sep 28 at 14:37
wow! great thanks a lot. – sasayins Sep 28 at 15:03
You forgot "delims=" to deal with folders that have spaces in their names. – Helen Sep 28 at 15:13
thanks, Helen - i have updated the example – akf Sep 28 at 15:56
vote up 2 vote down

With PowerShell:

gci | ? { $_.PSIsContainer }


Old Answer:

With PowerShell:

gci | ? {$_.Length -eq $null } | % { $_.Name }

You can use the result as an array in a script, and then foreach trough it, or whatever you want to do...

link|flag
Or you can filter using {$_.Mode -like "d*" } instead of the Length thing. I'm sure that a PowerShell guru will read this and show us the right solution. – Philippe Sep 28 at 14:17
1  
gci | ?{$_.PSIsContainer} is the canonical way, actually. – Johannes Rössel Oct 21 at 21:36
1  
Also, please don't reduce objects to string unless you absolutely have to. This causes more harm than good in most cases. – Johannes Rössel Oct 21 at 21:36
Good point, though the output described by sasayins was to have only directory names. – Philippe Oct 22 at 13:33

Your Answer

Get an OpenID
or

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