0

メモ帳を開き、.bat ファイルが配置されているディレクトリ内のフォルダーを入力する .bat ファイルを作成しました。

ここで、作成日順にフォルダーをテキスト ファイルに入力するように変更したいと思います。

これは私の.batファイルが今どのように見えるかです:

dir /a /b /-p /o:gen >C:\WINDOWS\Temp\file_list.txt
start notepad C:\WINDOWS\Temp\file_list.txt

また、テキスト ファイルを同じディレクトリに自動保存するオプションも必要です。

どんな助けでも大歓迎です。ありがとう

4

1 に答える 1

0

This lists the folders and then the files, and saves the file in current folder.

dir /ad /tc /od /b >file_list.txt
dir /a-d /oen /b >>file_list.txt
start "" notepad file_list.txt
于 2013-10-07T00:22:48.073 に答える