Howto split long filenames with \\?\c:\... using _tsplitpath() equivalent

  • Thread starter Thread starter Pieter
  • Start date Start date
P

Pieter

I want to be able to split regular MAX_PATH length filenames and 32K UNICODE
filenames using the \\?\ naming convention.

Are there any equivalents to _tsplitpath() for long names, or am I left to
writing my own split code?


Thanks

Pieter
 
Read carefully the remarks about buffer overflow problems with _tsplitpath()
and then write your own. I don't see any reference to another and it will
be complex because you can have remote storage for those filenames.
 
Back
Top