Search

5/12/2006

DIR Command

http://www.ss64.com/nt/dir.html

在這個目錄下找出所有有foobar字的目錄(不包含檔案)。
dir *.* /a:d /b /s /l | find "foobar"
/A:D 只列出Folder
/B Bare format (no heading information or summary).
/S include all subfolders.
/L use Lowercase. (因為find是case sensitive)

在這個目錄下列出所有目錄
dir *.* /a:d /b /s

沒有留言: