Top "Max-path" questions

How do I find files with a path length greater than 260 characters in Windows?

I'm using a xcopy in an XP windows script to recursively copy a directory. I keep getting an 'Insufficient Memory' …

windows windows-xp xcopy max-path
Should I deal with files longer than MAX_PATH?

Just had an interesting case. My software reported back a failure caused by a path being longer than MAX_PATH. …

winapi max-path
C#: Any way to get around the 260 character limit of a fully qualified path?

Possible Duplicate: Why does the 260 character path length limit exist in Windows? I'm trying to figure out a way to …

c# limit filepath maxlength max-path
Is MAX_PATH always same size, even if _UNICODE macro is defined?

Should I make room to it, like this: len = MAX_PATH * sizeof(_TCHAR) + sizeof(_TCHAR); or is: len = MAX_PATH + …

c++ c winapi max-path
ASP.NET url MAX_PATH limit

I've found an issue with ASP.NET that I know at least has stumped one other person out there. We …

asp.net url isapi max-path
Powershell: 'The fully qualified file name must be less than 260 characters'

I tried to use powershell command copy-item as xcopyto copy content of one disk to another one. copy-item -Path h:\* …

powershell xcopy file-copying copy-item max-path
Recursively copy folders with long file names (more than 260 chars)

I am trying to automate copy/replication of drives. Many of the drives have long file names, that fail the …

powershell xcopy max-path