-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
joinpath
able to handle output of splitpath
#31368
Comments
You can just splat the result into joinpath:
|
We could also just allow |
@Keno Thanks! That's a lot better than the workaround I came up with. |
The only issue would be a dispatch conflict between the varargs and container version but that would only occur in the case of a single string argument which is ok. In general since we tell people not to use splatting for this kind of thing we should be consistent and provide a non-splatting API here as well. |
* Fix #31368: joinpath works on collections of paths * Update base/path.jl Co-authored-by: Jameson Nash <[email protected]> * Apply suggestions from code review * Fixup Co-authored-by: Mustafa M <[email protected]> Co-authored-by: Jameson Nash <[email protected]>
…g#38263) * Fix JuliaLang#31368: joinpath works on collections of paths * Update base/path.jl Co-authored-by: Jameson Nash <[email protected]> * Apply suggestions from code review * Fixup Co-authored-by: Mustafa M <[email protected]> Co-authored-by: Jameson Nash <[email protected]>
…g#38263) * Fix JuliaLang#31368: joinpath works on collections of paths * Update base/path.jl Co-authored-by: Jameson Nash <[email protected]> * Apply suggestions from code review * Fixup Co-authored-by: Mustafa M <[email protected]> Co-authored-by: Jameson Nash <[email protected]>
…g#38263) * Fix JuliaLang#31368: joinpath works on collections of paths * Update base/path.jl Co-authored-by: Jameson Nash <[email protected]> * Apply suggestions from code review * Fixup Co-authored-by: Mustafa M <[email protected]> Co-authored-by: Jameson Nash <[email protected]>
It would be very handy if
joinpath
could "undo"splitpath
, i.e.should work and return
"/path/to/somewhere"
.The text was updated successfully, but these errors were encountered: