vote up 2 vote down star

OK, this isn't necessarily programming related, but it might have a programmatic solution.

When importing a project into eclipse, it somehow started creating recursive versions of the directory.

Now, when I try to delete anything, I get the message " the file name you specify is too long."

I can't delete it from the command shell. I can't delete it from explorer. I can't do ANYTHING with it. I have no idea how many copies of it Eclipse created. Eclipse was running for like a minute before I realized something was wrong and I cancelled the operation.

I can get the properties of the top level folder, and it says it contains 497 folders.

Question 1: how can I delete all this stuff in Windows?

Question 2: What the hell was eclipse thinking?

flag

73% accept rate

6 Answers

vote up 3 vote down check

I had a problem similar to this with Eclipse: trying to import a project using Subclipse, it generated a deeply nested set of directories which I couldn't delete.

I did a couple of things, firstly I edited the directory names down to the shortest length possible (actually I think this was pointless). Secondly, I traversed the directory tree as deeply as possible and then cut and pasted the branch out (which makes it possible to delete the original branch), and then repeated the process.

@Charlie and @Tomalek's solutions look like they might be more elegant. I don't plan on repeating the experience to find out though.

link|flag
This might be the most inelegant, but I tried the rest. It took a few minutes, but it solved it. And, that's exactly what happened to me. . .I think I was doing an import -> SVN -> checkout. I'm not going to try to reproduce it to be sure, though. – Baltimark Feb 15 at 16:42
Glad my experience was of use to you :-) – Ian Hopkinson Feb 15 at 16:53
vote up 0 vote down

Have you tried deleting it from code?

link|flag
vote up 1 vote down

As to Q1)

Use subst to short-cirquit the paths:

subst Q: C:\very\long\path\created\by\eclipse
Q:
del *.*

As to Q2)

Long paths are less of a problem in other OSes, and there are Windows API functions that can deal with paths longer than 255 characters, so they just did it, I guess.

link|flag
my directory list goes. . . dirname -> dirname -> dirname -> . . . about 500 times. I can remap "q" to any part of it, but when I try to delete "q" it has the same issue. – Baltimark Feb 15 at 16:14
Then go on with the next drive letter. Look here: stackoverflow.com/questions/236533 – Tomalak Feb 15 at 16:54
Ok tomalak, you're saying to keep adding drive letters until I get a path short enough to delete, and then "delete from the bottom", if you will. Similar idea to Ian's. Might be more efficient, time-wise. Thanks. – Baltimark Feb 17 at 15:31
@Baltimark: Yes, exactly. If such a situation arises for me, which happens once in a while, I usually deal with it using a small recursive VBScript that handles the ugly part for me and keeps track of all the stacked drive letters. For a one-off situation, doing it manually can be enough as well. – Tomalak Feb 17 at 15:51
vote up 0 vote down

Try using Unlocker. It is used for killing processes holding locks on files, but I think it can force-delete f-ed up files, like you have.

link|flag
But this tool just removes exclusive locks on files. It can't help if the file path is too long. – Tomalak Feb 15 at 15:58
Right. Doesn't help. – Baltimark Feb 15 at 16:10
vote up 2 vote down

If you need to deal with paths longer than MAX_PATH, you'll have to use the Unicode versions of the Windows file APIs (e.g. DeleteFileW) and use the \\?\ prefix. You can write a short program using these APIs to enumerate these directories and delete them.

link|flag
vote up 0 vote down

UNLOCKER RULES, DUDE!

I was knocking my head to the wall the whole morning, trying to figure this out.

First of all, I don't know how this softwares can create a so long path... When I do that in .NET an exception is thrown BEFORE creating the path... so...

But I could delete the directory thanks to unlocker.

link|flag

Your Answer

Get an OpenID
or

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