Using Windows XP. File Explorer stops deleting files when it hits a file which is use. Is there a way to make it skip all files which are in use and just delete the others? If you will recommend a file explorer alternative, please mention the free one(s).

link|improve this question

55% accept rate
may be xcopy can help in moving files to the NUL device. Didn't try it myself but if you look at all the comandline parameters... – Ice May 10 '10 at 21:56
You cannot move files with xcopy, only copy. – Jawa May 11 '10 at 6:18
feedback

2 Answers

Try total commander, I know it's not free, but you get a 30 day trial.

When deleting, if you hit files that are in use it offers you a choice of skipping that one or skipping all.

link|improve this answer
feedback

You can use the del command in regular Windows Command Prompt (cmd.exe), it skips all locked/in-use files and deletes all the available files.

link|improve this answer
How do you get delete subfolders with it? – Tony_Henrich May 11 '10 at 15:50
del removes files only, you can use /s parameter to remove files from subdirectories (all directories remain). Command rmdir /s <path> removes folder specified with <path>, all it's subfolders and all files in them. – Jawa May 12 '10 at 7:40
feedback

Your Answer

 
or
required, but never shown

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