此批处理脚本在其自己的目录中创建文件列表的文本文件,无文件扩展名。但是,我希望它创建另一个目录的文件列表。如何修改它以获得这些结果?
@echo off
cd %1
if exist filelisting.txt del filelisting.txt
for /F "delims=" %%j in ('dir /A-D /B /O:GEN') do echo %%~nj >> filelisting.txt
答案 0 :(得分:0)
没关系,我明白了:
@echo off
cd %1
if exist filelisting.txt del filelisting.txt
for /F "delims=" %%j in ('dir "c:\Location\*" /A-D /B /O:GEN') do echo %%~nj >> filelisting.txt