How to delete a file in Windows with a too long filename?

203

126

My wife has several files and folders that somehow ended up having filenames that have caused them to be undeleteable (can't be deleted) by normal means or via the command line. I believe the filenames are too long due to the depth of the folder structures. Does anyone know of a good utility for cleaning up files like this?

user3048

Posted 2009-09-23T15:56:39.040

Reputation: 2 159

Question was closed 2015-08-07T17:34:09.933

2@Mokubai- The duplicate question should be marked a duplicate of this one, as this question is older. – AStopher – 2015-10-12T08:25:45.090

1@cybermonkey: And it has a better answer. – Ellesedil – 2016-03-23T00:50:25.037

For further readers, the 7zip Method with CTRL + DELETE is the easiest method in my opinion...

– Christian Gollhardt – 2016-08-14T15:46:14.603

https://superuser.com/a/1263183/439537 – Andrew – 2017-10-28T00:38:25.387

How were these files created? – Nick – 2011-03-25T15:44:38.803

Sorry for my ignorance on this topic, but shouldn't Windows handle these files? Shouldn't what Will Eddins posted be done automatically by Windows (even from explorer) ? – Stefanos Kalantzis – 2013-09-14T17:47:07.690

Answers

428

When you want to completely delete a directory and it contains long paths, robocopy does a VERY good job:

mkdir empty_dir
robocopy empty_dir the_dir_to_delete /mir
rmdir empty_dir
rmdir the_dir_to_delete

This works because robocopy internally uses the Unicode-aware versions of Win32 functions, with the \\?\ prefix for file paths; those functions have a limit of 2¹⁶-1 (32,767) characters instead of 259.

You may need to go through this process more than once to get rid of all of the files.

Benoit

Posted 2009-09-23T15:56:39.040

Reputation: 6 563

1I had to add /purge to the robocopy line for this to work, but it did the trick after that – actionshrimp – 2014-07-21T10:12:03.093

@actionshrimp, /MIR implies /PURGE. I don't understand how adding /PURGE could alter the behaviour! – Benoit – 2014-07-23T13:59:11.233

3Robocopy is what got me into this mess, but it never occurred to me to use Robocopy to get me out of it. Great answer! Thanks! – Jay Michaud – 2014-07-25T21:07:02.430

@Benoit: 2³²??? Holy crap that's a high number! >_< – SarahofGaia – 2015-08-07T17:50:53.840

@bgallagh3r: That's a lot of internets. Specifically, you are saying they win 10⁴ × 59.9 EiB = 599 000 EiB. That's 585 ZiB, or 691 ZB!!! You sure they're worthy of that much data?! >_< – SarahofGaia – 2015-08-07T18:31:12.247

@Benoit: I don't understand command line to this level of a degree, yet. For the example you gave, do I just type in what you have typed there? And if so, what do I replace with what? – SarahofGaia – 2015-08-08T00:50:18.037

Nice idea but didn't work for me with 10's k's of recursive folders. Only rimraf worked. – Julian Knight – 2015-09-11T16:41:45.267

2@SarahofGaia, my bad, it's 2¹⁶ - 1 actually – Benoit – 2015-10-12T08:14:46.923

1Saved by day... – Manoj Attal – 2015-12-31T07:14:57.240

amazing answer, it feels like old and for mere mortals forbidden windows power – aliopi – 2016-02-09T11:12:39.313

Great answer! Much better than the ones that tell you to rename by hand or delete files individually - with this you can just kick it off, come back in a while and it's all done. Could just be worth adding to the answer that robocopy comes with recent versions of Windows (Vista+) - I wasn't familiar with it and assume some others might not be either. – Steve Chambers – 2016-02-24T15:20:45.333

@Benoit: According to the robocopy command line help, /MIR is equivalent to /E plus /PURGE, so wouldn't this mean that /S is not necessary? (/E is the same as /S but includes empty subdirectories) – Avalanchis – 2016-04-18T21:31:23.847

main example didn't work on windows 10... didn't copy any of the files from the dir...]

I'm thinking unicode was the issue in the first place... most US devs don't account for the majority of people in the world not using english. – Dawesi – 2016-05-29T20:08:20.663

Works great but slow. – eomeroff – 2016-06-29T14:05:16.880

This works great. I am a javascript/angular developer. The modules installed through npm always causes the same problems and i am using this command to delete those modules, I have this answer bookmarked on my browser. @Benoit Thanks a lot... – Paulson Peter – 2016-12-21T08:54:21.847

perfect answer! – Monis – 2017-03-20T22:54:12.413

This doesn't work when the problem is the whole path and not just the filename. Robocopy cannot delete the files in that situation. – Martin Argerami – 2017-07-17T22:37:07.233

This worked when all other methods didn't work such as (dir /x, using System user account, moving file, renaming file, etc) – MKANET – 2019-01-11T19:28:18.020

1Efficient when there is no shortname (8.3) stored in the filesystem. – Antoine RODRIGUEZ – 2013-05-11T10:43:27.327

I had a 8.3 filenames, but they didn't work. This did work. – Ciantic – 2014-01-18T20:44:41.170

1

This worked nicely with my stubborn Windows Store cache files that refused to be deleted. Thanks!

– Samir – 2014-03-06T10:07:51.037

91

From a command prompt:

dir /X

This will list your files/folders in short name format. Then use the short name exactly as written to delete the file:

del LONGF~1.txt

Will Eddins

Posted 2009-09-23T15:56:39.040

Reputation: 3 354

Thank you for this simple solution to a very annoying problem! – DeathByTensors – 2014-08-27T16:48:40.880

Worked for me. I'm on Windows 7 btw – fedmich – 2017-02-03T17:20:21.883

4This does not work with Windows 10, the displayed file name is the long one – Loenix – 2017-06-09T15:49:53.027

1This works for files and folders in the current directory, but if you somehow manage to find yourself inside a folder whose path is too long, it will not help. For example, I am currently in a console in a too-long path and cannot even dir or cd ... – Bobson – 2011-11-21T02:48:53.847

1I like that one, it's a nice bit of lateral thinking. – Col – 2009-09-23T16:03:15.017

While I can't guarantee it will work in this case, I've used it several times to delete folders that have invalid characters at the end that make them impossible to delete by normal means. – Will Eddins – 2009-09-23T16:03:48.463

I just used this technique to delete a file with an invalid filename - it was a file named "},". This tip solved it. Thanks Guard. – Charles Roper – 2009-10-03T12:57:13.783

1@Bobson If you cannot dir use pushd instead. That worked for me. – BadHorsie – 2013-11-19T10:59:31.713

53

I progressivley work my way into the path, renaming each successive parent folder to "1" and attempting to delete. You're effectively shortening the path each time and I've never had to work in by more than 4 or 5 directories until I'm finally able to delete the entire directory structure (which may or may not be what you want). You could do this from the last child folder as well and work your way up or down.

joeqwerty

Posted 2009-09-23T15:56:39.040

Reputation: 5 259

Was the only suggestion that worked oddly enough. – Nestor Ledon – 2014-09-24T19:54:00.077

This worked for me, a shortcut that helped me was mv * 1 && cd 1. This didn't work when multiple files were in the directory but at that point an rm -rf * usually did the trick. – Alexander Varwijk – 2015-05-20T21:37:21.227

@Alexander: Arguably, your suggestion is off-topic, because this question is tagged [windows].  Unless you're suggesting that it might be necessary even with a Linux live CD.  Or you're suggesting Cygwin, as was done here.  Now that this question is closed as a duplicate, you might want to re-post your comment on the other one.

– Scott – 2015-08-13T18:02:47.473

I thought I somehow made the above work on windows (without any additional tools). However, the way I wrote it down of course doesn't work. Sadly I can't reproduce it at this time :/ Maybe I just missed the Windows tag. – Alexander Varwijk – 2015-08-17T11:47:02.317

The ability to fix this quickly without additional software was a big win in my book! nice job – Bobby Borszich – 2015-09-19T21:38:32.137

1Can't do this in windows 10... rename throws "filename to long' error – Dawesi – 2016-05-29T20:09:12.183

Worked for my purposes in window 7. Had to rename over 7 folders deep. – Damon – 2016-11-03T22:44:00.343

3Not only did this fix the problem for me, it also explains how I ended up with the issue in the first place. I must have had a path that was near the limit, then I renamed a parent folder (added something like "backup Nov 2016 save" to the name) which pushed the files in subfolders over the limit. Good to know the cause as well as the solution, even though I know it can happen other ways too, I think this is a common way it happens to folks. – eselk – 2016-11-08T20:46:38.523

The only one that worked for me in Windows 10, thanks! ;) Such a stupid thing really. I can't believe MS would allow files to be created that people can't delete. Just add to my list of stupid things Windows (MS) does. – James Wilkins – 2017-07-18T18:55:53.627

7This was the only thing that worked for me. All the other tricks given here and in other forums such as this didn't work. – Andrew Arnott – 2010-12-26T01:23:52.493

13

A trick I have used to get round the "full path and filename" length limitation in order to move, copy or delete something is to shorten it by 'breaking in' halfway down (or more) using a mapped drive letter pointing to a folder way down the path.

so you have c:\some\long\path...\and\foo\bar\folders\oldfiles\myoldfile.txt.

Then map an arbitrary drive letter to somewhere along the path so that the first chunk of the path becomes only a few characters long. Pre-requisite - the folder must be in a shared folder (which it may already be if it is on a server, which is where I have needed to do this), and if it is not already then pick a folder somewhere in the path and share it. Depending on your environment and paranoia level, allow everyone modify access to the share as long as the NTFS permissions are reasonably restrictive. If you want, just allow modify rights only to your own account.

Now go to the shared folder or one inside it and share it, or use the command line as follows. Assume you shared folder "foo" as "fooshare", then you could do

net use x: \\mycomputername\fooshare\bar\folders /persistent:no

and the X: drive now points directly to the folder "folders" inside that share, so "x:\oldfiles\myoldfile.txt" is now pretty short.

(The "/persistent:no" means this won't survive the next reboot and confuse you later on. Don't forget to un-share your folder when done.)

Remember, you don't have to share the folder containing the file necessarily, if it is already inside a shared folder you can just map through the share and the nested folders to a target folder near to the file and that works fine.

I've had to use this technique doing a massive robocopy between two servers when we realised that users had mapped drives quite deep in the folder structure, so they had been able to use 255 characters from there, but that exceeded the total file path length when accessed from the local drive root.

AdamV

Posted 2009-09-23T15:56:39.040

Reputation: 5 011

4you can avoid the sharing by using subst x: C:\Some\first\part\of\the\long\path and afterwards delete the drive with subst x: /d – mihi – 2014-10-27T19:33:39.913

1Nice try but when you have 10's of k's of folders nested it isn't possible. – Julian Knight – 2015-09-11T16:42:44.733

The subst trick seems to work well, as long as the filename is not so long as to making it go over 260 characters even at the root of a drive. – Stephen Chung – 2016-06-04T08:36:39.990

You also don't need to explicitly share any folder with net use, you can use the default admin shares: net use x: \\localhost\c$\bar\folders /persistent:no – kapex – 2017-02-17T22:25:37.590

13

In some programs, including Command Prompt (cmd.exe), you can get around the file length limit by prefixing the full path with \\.\ like this:

\\.\C:\some directory\other directory\a file with long name

user1686

Posted 2009-09-23T15:56:39.040

Reputation: 283 655

3doesn't work in windows 10 – Dawesi – 2016-05-29T20:09:46.340

thanks, cmd worked a charm with this in Win7 rm -rf \\directoryname – Philip Pryde – 2016-12-05T22:32:07.747

9

The simplest way I've found is to boot from an ubuntu live CD.

As an alternative you can create a shared folder halfway down the path and then map a network drive to that and do the delete from the mapped folder (even on the same machine)

Col

Posted 2009-09-23T15:56:39.040

Reputation: 6 995

This is the only solution that worked for me. I love you, Linux! <3 – David Frye – 2014-09-11T18:10:50.790

1

Run bash from windows No Linux required. ;-)

Also if you're running windows 10 just install “Windows Subsystem for Linux" basically windows uses ubuntu api hooks to get the job done... utils including "apt, ssh, rsync, find, grep, awk, sed, sort, xargs, md5sum, gpg, curl, wget, apache, mysql, python, perl, ruby, php, gcc, tar, vim, emacs, diff, patch, and most of the tens of thousands binary packages in the Ubuntu archives!" This is a very full Linux development environment that just happens to be running on Windows. http://www.zdnet.com/article/ubuntu-and-bash-arrive-on-windows-10/

– Dawesi – 2016-05-29T20:25:11.107

cygwin is another alternative for running LINUX commands in windows – atom88 – 2017-01-03T21:19:49.217

17It's funny how often an Ubuntu Live CD will help troubleshooting Windows problems ^^ – Ivo Flipse – 2009-09-23T16:07:28.410

1I've noticed that myself, dodgy network try a live CD, filesystem issue try a live CD, corrupt partition table etc. etc. :-) – Col – 2009-09-23T16:12:59.147

5

Rename the directory of cut/paste the file somewhere else, then delete it. Works here.

Or just from the command prompt, if you don't feel like going through the trouble.

Rook

Posted 2009-09-23T15:56:39.040

Reputation: 21 622

This works like a charm. Dig down there (for me, it was super-nested node_modules folders), drag it out to your desktop and delete away. Rinse and repeat as you go up a few folders at a time. What an obnoxious problem. – nickb – 2015-04-09T06:19:04.987

7This didn't work for me - the paste operation failed because of the long filename - doesn't matter where cut it. – UpTheCreek – 2016-01-21T13:02:02.703

1

Probably not the best way and I am interested to see what others come up with -

I had this once and I tried a few things without any luck. Rather than looking for a good tool, I restarted with the Windows Disk in, went to the recovery console and just deleted it from there. Worked first time and really well!

Also, just did a Google for you and found this - DelinvFile Looks Good but cannot vouch for it.

Edit - Warning, just seen the above is only a trial - Maybe not as good as I first thought!

William Hilsum

Posted 2009-09-23T15:56:39.040

Reputation: 111 572

The free rimraf works just fine and worked when all the other ideas failed. It requires node.js – Julian Knight – 2015-09-11T16:43:48.523