I want to delete a folder that contains thousands of files and folders. If I use Windows Explorer to delete the folder it can take 10-15 minutes (not always, but often). Is there a faster way in Windows to delete folders?

Other details:

  • I don't care about the recycle bin.
  • It's an NTFS drive.
link|improve this question
3  
what does this have to do with programming? – Mitch Wheat Oct 9 '08 at 10:55
42  
Today, at my job as a programmer, I lost two hours deleting big folders. Any help to do this faster is good to enhance productivity. – rec Dec 15 '08 at 19:52
1  
this question should be moved to superuser.com – Serge - appTranslator Jan 28 '11 at 22:43
1  
Also asked here at Super User: superuser.com/questions/19762/mass-deleting-files-in-windows/… – Hugo Jun 1 '11 at 21:51
feedback

closed as off topic by Bill the Lizard Oct 21 '11 at 15:46

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

7 Answers

up vote 56 down vote accepted

Use Windows Command Prompt:

rmdir /s /q folder
link|improve this answer
6  
btw, you can also use rd /q/s <foldername> however, while this is faster than the graphical representation inside Windows Explorer, it is still going to take a long time - MS uses a 'Schlemeil the Painter' algorithm (joelonsoftware.com/articles/fog0000000319.html) anytime a dir or del is done – warren Oct 9 '08 at 11:36
6  
Thats not DOS! Thats just the command line tools for Windows – TFD Mar 10 '09 at 7:32
Agree with TFD -- someone should edit this post and change DOS to "the command prompt". – Richard West May 19 '09 at 16:48
5  
rm -rf folder works wonderfully fast if you have Cygwin installed. – Sinan Ünür May 23 '09 at 14:18
5  
I used to use this, but I've found a combo of del+rmdir nearly three times faster than plain rmdir. See my answer: stackoverflow.com/questions/186737/… – Hugo Jun 1 '11 at 21:50
feedback

The worst way is to send to Recycle Bin: you still need to delete them. Next worst is shift+delete with Windows Explorer: it wastes loads of time checking the contents before starting deleting anything.

Next best is to use rmdir /s/q foldername from the command line. del /f/s/q foldername is good too, but it leaves behind the directory structure.

The best I've found is a two line batch file with a first pass to delete files and outputs to nul to avoid the overhead of writing to screen for every singe file. A second pass then cleans up the remaining directory structure:

del /f/s/q foldername > nul
rmdir /s/q foldername

This is nearly three times faster than a single rmdir, based on time tests with a Windows XP encrypted disk, deleting ~30GB/1,000,000 files/15,000 folders: rmdir takes ~2.5 hours, del+rmdir takes ~53 minutes. More info at Super User.

This is a regular task for me, so I usually move the stuff I need to delete to C:\stufftodelete and have those del+rmdir commands in a deletestuff.bat batch file. This is scheduled to run at night, but sometimes I need to run it during the day so the quicker the better.

link|improve this answer
1  
This is really really good. I have test by myself. Thanks. – vietean Jun 18 '11 at 19:32
Thanks for the confirmation! :) – Hugo Jun 18 '11 at 20:51
1  
Works perfectly! – Manohar Jul 1 '11 at 7:08
1  
Works perfectly :) – Ranhiru Cooray Nov 8 '11 at 8:56
@Hugo a question: In the above timed tests, for either or both methods, did you count the files immediately before you ran the method? I'm asking because the folder contents might already be in the OS file cache. Thanks! – William C Apr 10 at 15:20
show 5 more comments
feedback

I don't have anything large enough to test but usually this is faster: Select the folder and then hold down the Shift key and then Delete. You'll be prompted about permanently deleting the files. No recycle bin should speed this up.

link|improve this answer
2  
if you have thousands of files, this won't make such a big difference. – Tempus Jun 20 '09 at 17:06
1  
@Geo, I disagree, I've noticed a big difference between using shift vs using recycle bin with 250k files – Neil N Dec 1 '09 at 19:58
Shift+delete is better than recycle bin, but the command like is much quicker, and it won't abort if there are any problems: stackoverflow.com/questions/186737/… – Hugo Jun 1 '11 at 21:55
feedback

use the command prompt, as suggested. I figured out why explorer is so slow a while ago, it gives you an estimate of how long it will take to delete the files/folders. To do this, it has to scan the number of items and the size. This takes ages, hence the ridiculous wait with large folders.

Also, explorer will stop if there is a particular problem with a file,

link|improve this answer
feedback

and to delete a lot of folders, you could also create a batch file with the command spdenne posted.

1) make a text file that has the following contents replacing the folder names in quotes with your folder names:

rmdir /s /q "My Apps"
rmdir /s /q "My Documents"
rmdir /s /q "My Pictures"
rmdir /s /q "My Work Files"

2) save the batch file with a .bat extension (for example deletefiles.bat)
3) open a command prompt (Start > Run > Cmd) and execute the batch file. you can do this like so from the command prompt (substituting X for your drive letter):

X:
deletefiles.bat

link|improve this answer
Yes, I have a similar batch file, but found a combo of del+rmdir the fastest: stackoverflow.com/questions/186737/… – Hugo Jun 1 '11 at 21:54
feedback

use fastcopy, a free tool. it has a delete option that is a lot faster then the way windows deletes files.

link|improve this answer
I tried FastCopy. not sure if it is faster than windows, I was only getting 92 files / second deleted. Considering I gave up counting the number of files at over 250K, its going to take me for ever to use.. Oh well. Each file is only like 20 bytes. Darn PHP Session Files. – Chrispix Aug 28 '10 at 19:59
feedback

Try [shift]+[delete] did 24.000 files in 2 minutes for me

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.