Hello StackOverflow成员!
我正在尝试运行以下命令:
REM the below line lists the folder names that are to be read
FOR /F "TOKENS=* DELIMS=" %%d in (%start_dir%\folder_list.txt) DO (
ECHO Entering into: %%d Directory
REM The below line lists the folders and all of it's subfolders. It than outputs it to a file.
FOR /F "TOKENS=* DELIMS=" %%e in ('DIR /s "%work_dir%\%%d"') DO (
ECHO %%e>>%start_dir%\tmp_folder\%%d.size
)
)
上面的代码有效。
问题在于:如果我的文件夹大小只有几GB,那就没关系了。
如果我的文件夹大于100GB,脚本将花费大约一个小时来输出DIR / S>> %% d命令。
当我在大约150GB的单个文件夹上运行时:Dir / s“150GB_Folder”>> dir_ouput_file.txt它在大约6-10秒内完成。
我的问题是:为什么从脚本中输出DIR /S>>whatever.txt需要一个小时,而它不在脚本中只需几秒钟?
提前谢谢!
答案 0 :(得分:8)
这是for
中的一个错误,其中使用命令解析大量行会导致大量延迟
解决方案是使用信息创建一个文件,然后读取文件。
REM the below line lists the folder names that are to be read
FOR /F "TOKENS=* DELIMS=" %%d in (%start_dir%\folder_list.txt) DO (
ECHO Entering into: %%d Directory
REM The below line lists the folders and all of it's subfolders. It than outputs it to a file.
DIR /s "%work_dir%\%%d" >%temp%\temp.tmp
FOR /F "TOKENS=* DELIMS=" %%e in (%temp%\temp.tmp) DO (
ECHO %%e>>%start_dir%\tmp_folder\%%d.size
)
del %temp%\temp.tmp
)