Skip to content

Instantly share code, notes, and snippets.

@amano41
Created November 8, 2017 14:58
Show Gist options
  • Save amano41/1131409db4d25fd326d89bcb7ff42462 to your computer and use it in GitHub Desktop.
Save amano41/1131409db4d25fd326d89bcb7ff42462 to your computer and use it in GitHub Desktop.
Temp フォルダの中身を削除するバッチファイル
@echo off
pushd %USERPROFILE%\AppData\Local\Temp
del /q *.*
for /d %%f in ( * ) do rmdir /s /q "%%f"
popd
pushd %SystemRoot%\Temp
del /q *.*
for /d %%f in ( * ) do rmdir /s /q "%%f"
popd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment