I am writing a file copying utility in Python. But I am getting some error messages when processing files with very long file paths.
I suspect Python has some limitations when handling very long file paths.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Many file systems don’t support long filenames, so it’s probably a limitation of the OS or your file system.
There are also OS-specific issues like API limitations (e.g. in the Windows API).