-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
[bug] Tauri Path API shows wrong path \\?\ #5850
Comments
These are not reallyyy wrong paths. They are indeed valid, and are called UNC paths, the main reason to use them is to allow much larger paths (32k chars instead of 255). Unfortunately it turns out that (too) many libraries don't support them so imo we should look into removing the UNC part :/ |
@FabianLars There's a popular |
yep, i (we) are aware of that. We just can't change the paths in a 1.X release because it would technically be a breaking change. |
are there plans to change this for 2.0 or is this remaining as is? |
@NaughtyDog6000 |
This is definitely unfortunate! When I naively passed I think the biggest problem is that the path format returned by
I haven't checked other directories yet, but I suspect that paths returned by I believe Otherwise, for users who do not look at the implementation code of |
Describe the bug
I'm trying to do some file manipulation in a simple Desktop App, and I'm stuck. When using File System, everything is OK and I can create a simple text file in my Desktop folder.

But when I try to retrieve the current folder where the .exe is running, the path is shown with this weird characters at the begining: \?
Reproduction
Expected behavior
I expected the path to be written as "C:\Users\willi\Desktop\ and so on"
Platform and versions
Stack trace
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: