Richard said:
I have an external 250 GIG HD and recently after working on a video project
that particular folder is 177 Gigs! It will not delete no matter what
approaches I try; without reformating that HD. I don't really want to do
that because I don't have any place to put the files I want to keep. The
problem folder(s) are full of unidentifiable filenames that are definitely
not English and because of that it seems that folder/sub-folders will NOT
delete. I have researched for weeks now via Tips and Tricks Windows XP sites
and nothing works. Immediate replies would be greatly appreciated, thanks.
First of all, make sure to check the disk for corruption, that may be the cause of the strange characters. Use scan disk and
chkdsk. If it is clean, then you should be able to delete the folder without risk.
What is the folder called? Try renaming it. For example, if the folder is
"C:\Video Files\£³r?????æ°blah"<???ôé .#_aµ©\funny vidos"
then open a command prompt (Run->cmd.exe) and use this set of commands:
cdd "c:\video files"
ren *blah* z
deltree /y z
That should rename the folder to "Z", and then delete it along with everything inside it. You could repeat the process for any
particularly stubborn folder in there which may cause problems.
If a folder's full path is too long, for example:
"c:\SomeReallyLongDirectoryNameThatWillCauseProblems\1111111111111111111111111111111111111\22222222222222222222\33333333333333333333
3333\44444\555555555555555555555555555555555555\6\777777777777777777777777777777777777777777777777777777777\8\99999999999999999999\0
0000000000000000000000000000000000000000000000000000000000000000\aaaaaaaaa\BB"
then the system will not be able to delete it because the full path will not fit into the command's argument. Therefore you would
not be able to delete the folder "BB" in the above example, the system would complain. What you need to do is to shorten the full
path. So, rename "SomeReallyLongDirectoryNameThatWillCauseProblems" to something like "a", then
"1111111111111111111111111111111111111" to "a", and so on. Eventually, the full length will be small enough that you can delete
"BB".
Also, you could get a copy of Jeremy Collake's MoveLatr (
http://www.collakesoftware.com/) or Cedrick Collomb's Unlocker
(
http://ccollomb.free.fr/). You can use those to have Windows automatically delete the folder on the next boot, before it loads.