Hi.. I've to remove a very long path. I've written the below to try that but its giving WindowsError: [Error 206] (I've pasted it below). I've prepended "\\?\" to the actual path but still I'm getting the exception. Please let me know the solution...
++++
import os
import shutil

os.rmdir(os.path.realpath(r"\\?\D:\Kamesh\test-1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950\test-1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950\kkkkkkkkkkkkkkkkkkkkkkkkk\kllkppppppppppppp\long_path_test"))
++++++++++++++++


++++++++++
WindowsError: [Error 206] The filename or extension is too long: '\\\\?\\D:\\Kam
esh\\test-1234567891011121314151617181920212223242526272829303132333435363738394
041424344454647484950\\test-1234567891011121314151617181920212223242526272829303
132333435363738394041424344454647484950\\kkkkkkkkkkkkkkkkkkkkkkkkk\\kllkpppppppp
ppppp\\long_path_test'

Recommended Answers

All 7 Replies

Are you trying to store your data in the file path?
Please read the Windows manual on file path limitations.

Path cannot be more than 255 chars on NT based systems using NTFS

Are you trying to store your data in the file path?
Please read the Windows manual on file path limitations.

Thanks for your valuable suggestion.

I have to remove too long path created by some scripts of our project... I've just taken an example to try it out. Please don't validate the path given in the example and that is not the data as you assumed...

I did search in google but couldn't find the exact solution..
just let me know the solution if you have any solution..

Path cannot be more than 255 chars on NT based systems using NTFS

Yeah.. you are right.. in some cases where the path exceeds 255 chars, we can prepend '//?/' so that it allows around 3000 chars and then we can remove it.. but still i think i've missed something in the script..

Well, I got the same problem as very annoying and with no explanation as the file names have no visible illegal characters and are not too long and not copied or deleted and found good stuff at http://pathtoodeep.com/ and also over here. Thanks

The  ” Long Path Tool ” is also useful in situations where you see these error messages

Use Long Path Tool, Long Path Tool can simplify and probably end your problems in unlocking, managing and renaming files that appear to have a long filename.

commented: Please stop spamming -3
commented: Just replicates previous post 4 months later. Pathetic -3
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.