Skip to content

Instantly share code, notes, and snippets.

@leodutra
Last active May 1, 2023 19:09
Show Gist options
  • Save leodutra/84fce36e804bb1c50d6f to your computer and use it in GitHub Desktop.
Save leodutra/84fce36e804bb1c50d6f to your computer and use it in GitHub Desktop.
Batch for deleting files and folders recursively on Windows.
@echo off
set foldername=%1
:: Remove files before removing their folders. It's faster
DEL /F /Q /S %foldername%\*
:: "RD" is much more fast than "RMDIR"
for /D %%i in ("%foldername%\*") do RD /S /Q "%%i"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment