0

我正在尝试获取 windows 目录中每个目录和子目录下所有文件的列表。我知道如何列出所有文件和文件夹以及文件路径,但我只需要所有子目录下的文件名。所有文件都以扩展名“.tif”结尾。

4

1 回答 1

4
dir /s /b *.tif

有时咨询帮助确实帮助:

> help dir
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]

...
/B          Uses bare format (no heading information or summary).
...
/S          Displays files in specified directory and all subdirectories.
...
于 2013-08-27T16:26:44.570 回答