09/01/29 23:03:09 UZooMdwo0
>>725
@echo off
pushd "ライブラリのパス"
if exist temp.txt del temp.txt
dir /b /s incomplete-* > temp.txt
dir /b /s temp-*>> temp-*>> temp.txt
for /f "tokens=*" %%i in (temp.txt) do (
del "%%i"
echo %%iを削除しました。
)
del temp.txt
popd
exit /b