Я пытаюсь запустить простой командный файл:
@echo off <-- don't print this line or any of the preceeding lines to the console window.
pushd "K:\" <-- in the quoted directory
for %%j in (*) <-- for every file in the directory
do
if %%~zj <-- if the size of the file
lss 37000 <-- is less than 37k
del %%j <-- delete the file
popd <-- go back to original directory.
Я начинаю получать сообщение об ошибке при @echo off
и pushd
, но если я попробую pushd
в cmd.exe
он будет работать нормально. Я уверен, что мне не хватает чего-то простого.
Есть идеи?