-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Windows paths starting with \\?\<Drive Letter>
do not work
#132
Comments
I just ran into this error as well. This happens when a windows path in canonicalized via the standard library, resulting in a path that |
Noticed this same issue on Windows As a workaround, removing the prefix |
Note that removing the |
If you have a path
C:\foo*
, it works, but if you have a path with\\?\C:\foo*
, it doesn't return anything. The\\?\
is a valid path and works in other parts of the Rust std library.Workaround for now:
Strip
\\?\
from the beginning of the pathThe text was updated successfully, but these errors were encountered: