(I have used recycle bin disabled, TC 32bit version, Windows XP)
Delete a folder containing a lot of nested empty sub folders.
Choose All when warning pops up that folder is not empty.
Click background button during deleting.
In background window click Pause button.
*Pause button changes to Start button, but deleting continues*
Click Foreground button
Click Pause button in foreground window
Deletion is paused.
Tool to create more than 111.000 folders:
Manyfolders.cmd
Code: Select all
@echo off
for %%a in (01 02 03 04 05 06 07 08 09 10) do (
for %%b in (01 02 03 04 05 06 07 08 09 10) do (
for %%c in (01 02 03 04 05 06 07 08 09 10) do (
for %%d in (01 02 03 04 05 06 07 08 09 10) do (
for %%e in (01 02 03 04 05 06 07 08 09 10) do (
md %%a\%%b\%%c\%%d\%%e
)
)
)
)
)