1

Possible Duplicate:
Mass deleting files in Windows

Windows 8 provides several ways to delete a folder, but some seem more efficient than others. For example, you can use Windows Explorer, which will enumerate every item in the folder before deleting them one by one. From the command line, there is del and rmdir.

When working with a folder with a deep hierarchy containing tens of thousands of files, what method for deletion is the fastest? No recycle binning desired.

Edward Brey
  • 2,005

1 Answers1

4

Based on https://stackoverflow.com/questions/186737/whats-the-fastest-way-to-delete-a-large-folder-in-windows it seems that:

rmdir /s /q folder

is the fastest way.

thane
  • 1,667