Search found 1 match
- 05 Jun 2025 03:32
- Forum: DOS Batch Forum
- Topic: Folder Deletion
- Replies: 1
- Views: 109
Folder Deletion
I have a .bat that runs at Startup. I want to add an extra process that deletes folders in a specific directory. The target folders will have been renamed with something like ".orph" appended at the end. I have this for starters: for /d "delims=" %%p in ("C:\Users\) do rmdir "%%p" /s /q but I don't ...