You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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. For example, if the file system supports large paths and file names, you can exceed the MAX_PATH limits that are otherwise enforced by the Windows APIs.
The part about "disable all string parsing" makes me think that we need to canonicalize the path to remove the .. before passing it on to Windows.
PRs #3324 and follow-up #3590 attempt to fix. Altough the proposed fix worked for me, it didn't for another user, so you might want to try out those branches too.
Error message:
Source code:
src\main.rs:
foo.rs:
Notes:
cargo build
is happy)...
in the path.After poking about some MSDN docs, I found this:
The part about "disable all string parsing" makes me think that we need to canonicalize the path to remove the
..
before passing it on to Windows.Versions
The text was updated successfully, but these errors were encountered: