Search results

  1. S

    Batch Scripting - Delete all Directories within a Directory

    Greetings from the future! I found this forum while searching for a y to delete all files and folders in temp folders. After fiddling around and using /? a bit, I decided upon this solution: CHDIR %temp% DEL *.* /s /q FOR /d %%i in (*) DO rd /s /q "%%i" DEL wipes out any files in the...
Back