We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
julia> joinpath("C:\\a\\b", "c:c\\e") "c:c\\e"
Expected
julia> joinpath("C:\\a\\b", "c:c\\e") "c:\\a\\b\\c\\e"
Since c:c\\e is a relative folder in the drive c:, which is the same as the C:, because drive letters are case-insensitive.
c:c\\e
c
C:
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Expected
Since
c:c\\e
is a relative folder in the drivec
:, which is the same as theC:
, because drive letters are case-insensitive.The text was updated successfully, but these errors were encountered: