I have a network drive and I am trying to delete a large folder. Man what a pain!
It's been on the "Calculating" phase forever now (it's at 26GB). Isn't there a way to just delete boom! I don't need to know how many files and how big they are!
I'm using Windows 7. I am using "shift" delete to skip the recycle bin.
12 Answers
You might be able to use the command prompt. I might be off on some of the details of the procedure, but try this:
- Open the Start Menu and in the text box, type
cmd.exeand hit Enter (or open the command prompt using your preferred method) - Switch to the network drive by typing
Z:(whereZis the letter of the network drive) - Change to the parent directory of the directory you're trying to delete using
cd path\to\parent\directory - Delete the directory using
rmdir /S giantdir
For example, if you want to delete the directory O:\MG\WTF\BBQ\SOMANYFILES:
C:\Documents And Settings\Me> O:
O:> cd MG\WTF\BBQ
O:\MG\WTF\BBQ> rmdir /S SOMANYFILESOr now that I think about it, I think you could just do
C:\Documents And Settings\Me> O:
O:> rmdir /S MG\WTF\BBQ\SOMANYFILESbut you would miss out on the chance to see Windows spell out OMGWTFBBQ in terminal font ;-)
By the way, rmdir (or del) does not move things to the Recycle Bin, it just deletes them, so be careful not to delete things you don't really want to.
I have similar issue. have 500G folder with tiny files to remove and window delete not work at all. The best way I found is using ftp to connect to NAS and delete the file which I could delete about 100+ files/ sec.
Your NAS may or may not support ftp option. but if it does, you r in luck