Skip to content

Instantly share code, notes, and snippets.

@valsaven
Created March 30, 2020 14:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save valsaven/dd8caffc2428ea04fded7c1a55ecc5ba to your computer and use it in GitHub Desktop.
Save valsaven/dd8caffc2428ea04fded7c1a55ecc5ba to your computer and use it in GitHub Desktop.
Recursively empty Temp folder
del /q D:\Downloads\Temp\*
for /d %%x in (D:\Downloads\Temp\*) do @rd /s /q "%%x"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment