我们如何按降序对文件大小进行排序。我应该添加什么?
for %%d in (a b c d e f g h i j k l m n o p q r s t u v w x y z) do ( if exist %%d: ( echo Another process is running !! Please wait !!! && dir %%d:\ /s >> %Systeminfo_TXT%))
如果我想在时间循环运行之前打印一个计时器,我该怎么做?
我们如何按降序对文件大小进行排序。我应该添加什么?
for %%d in (a b c d e f g h i j k l m n o p q r s t u v w x y z) do ( if exist %%d: ( echo Another process is running !! Please wait !!! && dir %%d:\ /s >> %Systeminfo_TXT%))
如果我想在时间循环运行之前打印一个计时器,我该怎么做?
要按大小降序排列文件,您可以将选项添加
"/o:-s
到“dir”命令。要在循环运行时打印消息,您可以按照建议使用“echo”命令。