我正在尝试使用DIR
按字母顺序列出当前目录和子目录中的所有文件。我只关心文件路径和名称。我不想要大小、计数等。这是我所拥有的,但它太详细了:
dir/on/s/w/a-d > __files.txt
这将输出类似以下内容的内容(已混淆):
Volume in drive Q is ********
Volume Serial Number is ****-****
Directory of Q:\****
__files.txt __listallfileswithoutput.bat
2 File(s) 28 bytes
Directory of Q:\****\*
*** ****.*** ******.*** ** **** ******.***
** **** ** ******.***
4 File(s) 4,288,735,526 bytes
Directory of Q:\****\*
*********.***
...
我只是想:
Q:\****\*\*** ****.***
Q:\****\*\******.***
Q:\****\*\** **** ******.***
Q:\****\*\** **** ** ******.***
Q:\****\*\*********.***
仅使用 DIR 可以做到这一点吗?如果不行,该怎么做?
答案1
输出是否符合dir/on/s/a-d/b > __files.txt
您的预期?