What Does Being A Hobbyist Mean?
The Windows API parses input strings for file I/O. Among other things, it translates / to \ as part of converting the name to an NT-style name, or interpreting the . and .. pseudo directories. With few exceptions, the Windows API also limits path names to 260 characters.
The documented purpose of the \\?\ prefix is:
What does it mean to be a Black Native in 2020? Shonda Buchanan was confronted at a powwow because of her skin, accused of being a “hobbyist” of Native identity. Read more about Buchanan on Sunday at https://t.co/GgTtwp4mh1. https://t.co/mS7cQSwG2Q
— Indian Country Today (@SteamPoweredDM) Jun 28, 2020
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.
This allows the use of . or .. in path names, as well as relaxing the 260 character path name limit, if the underlying file system supports long paths and file names.