如何获取没有文件的文件夹和子文件夹列表?

时间:2013-04-18 08:50:00

标签: cmd directory subdirectory

我正在尝试将目录的 文件夹 子文件夹 列表打印到文件

当我运行 dir /s/b/o:n > f.txt 时,我也会获得这些文件的列表。我只需要文件夹和子文件夹。

任何人都知道这可以从命令行界面执行此操作吗?

6 个答案:

答案 0 :(得分:134)

试试这个:

dir /s /b /o:n /ad > f.txt

答案 1 :(得分:19)

 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

只需设置所需文件属性的类型,在您的情况下为/ A:D(目录)

dir / s / b / o:n / A:D> f.txt

答案 2 :(得分:4)

我使用了dir /s /b /o:n /a:d,它运行得很好,只是确保你让文件写完,否则你的列表就会不完整。

答案 3 :(得分:1)

dir /ad /b /s会给出必要的答案。

答案 4 :(得分:1)

我正在PowerShell中使用它

dir -directory -name -recurse > list_my_folders.txt

答案 5 :(得分:1)

我没有足够的声誉来评论任何答案。在其中一项评论中,有人询问如何忽略列表中的隐藏文件夹。下面是如何执行此操作。

dir /b /AD-H