0
我正在嘗試爲特定級別的特定文件夾集創建目錄樹。我發現如何限制使用正則表達式的Tree
結果,但我不確定如何限制生成的樹只能說第一級目錄,而不是遞歸查找所有子目錄。在分層級別創建目錄樹
在Linux中,可以使用tree -L 1
將結果限制爲第一級。我如何在Windows cmd中執行此操作?
例 - 如果我的文件夾目錄如下:
Folder A
Folder B
Folder C
Folder D
Folder E
我想我的樹結果爲:
--Folder A
----Folder B
--Folder D
----Folder E
(只顯示2級)
的Tree
幫助如下:
Graphically displays the folder structure of a drive or path.
TREE [drive:][path] [/F] [/A]
/F Display the names of the files in each folder.
/A Use ASCII instead of extended characters.