The MSDN document Naming Files, Paths, and Namespaces talks about the \\?\ prefix. To quote:
For file I/O, the "\?" prefix to a path string tells the Windows APIs to disable all string parsing and to send the string that follows it straight to the file system.
Experimentation showed me that the \??\ prefix has the same effect, both disabling path parsing (.. handling) and enabling paths longer than MAX_PATH.
Are those just opaque stringsThe MSDN refers to \\? as the "Win32 file namespace", or do they actually make senseso does it known purely by the Win32 usermode API and translated to \?? in light of something youthe NT namespace? And anyway, through Winobj I see GLOBAL?? in Winobj? I've noticed some talk about "namespaces" but failed to make sense of itthe NT namespace, not ??.