Possible Duplicates:
Mass deleting files in windows
How can I speed up the deleting of very large directories on XP?

Every now and then I need to delete a folder containing something like 500k files from an NTFS volume. I do this with Windows Explorer.

Since NTFS journals all the service data changes each deletion is carried out serially and so the whole 500k files deletion takes ages. I remember when I did the same in FAT32 it ran uncomparably faster.

Is there any way to speed up deletion of large number of files on NTFS volumes?

link|improve this question

feedback

closed as exact duplicate by Mehper C. Palavuzlar, Ivo Flipse Mar 18 '10 at 10:50

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

up vote 1 down vote accepted

Open "Command Prompt" (cmd.exe) and run the following command:

del /f /s /q foldername
link|improve this answer
feedback

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