Jak uzyskać listę folderów i podfolderów bez plików?

Próbuję wydrukować listę foldery oraz podkatalogi katalogu do pliku.

When I run dir /s/b/o:n > f.txt, mam też listę akt. Potrzebuję tylko folderów i pod folderów.

Ktoś wie czy można to zrobić z poziomu interfejsu wiersza poleceń?

Author: Chaminda Bandara, 2013-04-18

4 answers

Spróbuj tego:

dir /s /b /o:n /ad > f.txt
 110
Author: Endoro,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/doraprojects.net/template/agent.layouts/content.php on line 54
2013-04-18 09:59:45
 Displays a list of files and subdirectories in a directory.

 DIR [ drive:][path][filename] [/A[[:]attributes]] [/B] [/C] [/D] [/L] [/N]
  [/O[[:]sortorder]] [/P] [/Q] [/R] [/S] [/T[[:]timefield]] [/W] [/X] [/4]

  [drive:][path][filename]
          Specifies drive, directory, and/or files to list.

  /A          Displays files with specified attributes.
  attributes   D  Directories                R  Read-only files
           H  Hidden files               A  Files ready for archiving
           S  System files               I  Not content indexed files
           L  Reparse Points             -  Prefix meaning not

Wystarczy ustawić typ żądanego atrybutu pliku, w Twoim przypadku /a:d (katalog)

Dir / s / b / O: n/A: D > f.txt

 19
Author: evilruff,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/doraprojects.net/template/agent.layouts/content.php on line 54
2013-04-18 08:53:47

Użyłem dir /s /b /o:n /a:d i zadziałało idealnie, tylko Niech plik skończy pisać, albo będziesz miał niekompletną listę.

 3
Author: user4950040,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/doraprojects.net/template/agent.layouts/content.php on line 54
2015-05-28 20:57:07

Dir / ad / b / S udzieli odpowiedzi

 1
Author: sravan,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/doraprojects.net/template/agent.layouts/content.php on line 54
2014-10-10 11:57:17