I have a C# .NET file copying program that does recursive copies of entire directories and contents. Everything has been going great until just recently... Ive run into a problem where I am getting a PathTooLongException thrown when the directory structure is particularly deep or I get an insanely long file name. The error message I am getting is:
"The path is too long after being fully qualified. Make sure path is less than 260 characters."
A 260 character limitation on the path has come as a big shock to me. Is there a way around this? Am I missing something obvious?
"The path is too long after being fully qualified. Make sure path is less than 260 characters."
A 260 character limitation on the path has come as a big shock to me. Is there a way around this? Am I missing something obvious?