我必须编写批处理脚本,列出目录中的所有文件并将该列表写入文件。我写了一些脚本但是我遇到了将新行设置为名为LinesToWrite的变量的问题。
有人能给我一些提示吗?
@Echo off
set FilesDir= C:\
setlocal enabledelayedexpansion
set LinesToWrite=
FOR %%f IN (%FilesDir%*.*) DO (
Set LinesToWrite=!LinesToWrite! Started app with file %%f
)
Echo !LinesToWrite!>lines.txt
答案 0 :(得分:0)
@Echo off
set FilesDir= C:\
setlocal enabledelayedexpansion
FOR %%f IN (%FilesDir%*.*) DO (
Echo Started app with file %%f>>Lines.txt
)