-
Notifications
You must be signed in to change notification settings - Fork 372
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
Question: syntax for abs paths passed as file://
URLs in Windows?
#3730
Comments
Seeing comments like this one: mamba/libmamba/include/mamba/util/url.hpp Lines 186 to 192 in 31b2347
makes me think it should be accepted? |
Per this blogpost from the IE team back in 2006, the proper syntax is as follows: |
Reading the mamba/libmamba/src/util/url_manip.cpp Lines 88 to 133 in 0abd7d5
And testing some more, it seems >>> from libmambapy.specs import CondaURL
>>> CondaURL.parse("file:////D:/a_/temp/popen-gw0/test_croot_with_spaces0/space%20path")
file:////D:/a_/temp/popen-gw0/test_croot_with_spaces0/space%20path |
It works with 4+ leading |
What's the actual way? Given this absolute path in Windows
D:\a_\temp\popen-gw0\test_croot_with_spaces0\space path
:Only the last one (without the
:
in the drive letter) is accepted, but not sure if that's understood as a Windows path internally? Should I always remove the:
in the drive?The text was updated successfully, but these errors were encountered: