我如何获得文件夹和子文件夹中没有文件的列表?(How do i get a list of fold

2019-08-31 10:52发布

我要打印的文件夹和目录到文件的子文件夹列表。

当我运行dir /s/b/o:n > f.txt ,我得到的文件还列表。 我只需要在文件夹和子文件夹。

任何人都知道这是可以从命令行界面做到这一点?

Answer 1:

试试这个:

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


Answer 2:

 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



Answer 3:

我用dir /s /b /o:n /a:d ,和它的工作完美,只要确保你让文件写完,否则你就会有一个不完整的清单。



Answer 4:

dir /ad /b /s将提供所需的答案。



Answer 5:

我用这从PowerShell的:

dir -directory -name -recurse > list_my_folders.txt


Answer 6:

我没有足够的声誉上的任何回答进行评论。 在一个评论,有人问怎么忽略列表中隐藏的文件夹。 下面是你如何能做到这一点。

dir /b /AD-H


文章来源: How do i get a list of folders and sub folders without the files?