5

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 しかないフォルダーがあれば問題ありません。

100 GB を超えるフォルダーがある場合、スクリプトが DIR /S>>%%d コマンドを出力するのに約 1 時間かかります。

約 150 GB の個々のフォルダーで実行すると、次のようになります。 Dir /s "150GB_Folder">>dir_ouput_file.txt 約 6 ~ 10 秒で完了します。

私の質問は、スクリプト内から DIR /S>>whatever.txt を出力するのに 1 時間かかるのはなぜですか?

前もって感謝します!

4

1 に答える 1

9

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
)
于 2013-09-20T01:57:31.490 に答える