Created
March 30, 2020 14:27
-
-
Save valsaven/dd8caffc2428ea04fded7c1a55ecc5ba to your computer and use it in GitHub Desktop.
Recursively empty Temp folder
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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