Suppress directory names being listed with DIR

前端 未结 5 1026
攒了一身酷
攒了一身酷 2020-12-30 01:38

I want to list the files in a folder but not sub-folders. DIR enables you to list specific types of files (hidden, archive ready etc) and also only folders but

5条回答
  •  一整个雨季
    2020-12-30 02:21

    dir /b /s /a-d
    

    /s lists every directory and all subdirectories containing files, and (a-d) without empty directories.

    dir /b /s /a-d /p
    

    /p pause

    dir /b /s /a-d > list.txt
    

提交回复
热议问题