Skip to content
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

Closed
jullit31 opened this issue Mar 15, 2019 · 4 comments · Fixed by #38263
Closed

joinpath able to handle output of splitpath #31368

jullit31 opened this issue Mar 15, 2019 · 4 comments · Fixed by #38263

Comments

@jullit31
Copy link

It would be very handy if joinpath could "undo" splitpath, i.e.

joinpath(splitpath("/path/to/somewhere"))

should work and return "/path/to/somewhere".

@Keno
Copy link
Member

Keno commented Mar 16, 2019

You can just splat the result into joinpath:

julia> joinpath(splitpath("/path/to/somewhere")...)
"/path/to/somewhere"

@StefanKarpinski
Copy link
Member

We could also just allow joinpath to work on a collection of paths. In fact, that should be the core method which the varargs method calls.

@jullit31
Copy link
Author

@Keno Thanks! That's a lot better than the workaround I came up with.
However, I still think it would be more intuitive if what I suggested worked. (Unless, of course, there is a reason for it not to work.)

@StefanKarpinski
Copy link
Member

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.

belamenso added a commit to belamenso/julia that referenced this issue Nov 1, 2020
belamenso added a commit to belamenso/julia that referenced this issue Nov 1, 2020
belamenso added a commit to belamenso/julia that referenced this issue Nov 1, 2020
belamenso added a commit to belamenso/julia that referenced this issue Nov 1, 2020
belamenso added a commit to belamenso/julia that referenced this issue Nov 1, 2020
belamenso added a commit to belamenso/julia that referenced this issue Nov 2, 2020
belamenso added a commit to belamenso/julia that referenced this issue Nov 2, 2020
belamenso added a commit to belamenso/julia that referenced this issue Nov 2, 2020
belamenso added a commit to belamenso/julia that referenced this issue Nov 3, 2020
belamenso added a commit to belamenso/julia that referenced this issue Nov 3, 2020
musm pushed a commit to belamenso/julia that referenced this issue Apr 22, 2021
musm added a commit that referenced this issue Apr 22, 2021
* 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]>
ElOceanografo pushed a commit to ElOceanografo/julia that referenced this issue May 4, 2021
…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]>
antoine-levitt pushed a commit to antoine-levitt/julia that referenced this issue May 9, 2021
…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]>
johanmon pushed a commit to johanmon/julia that referenced this issue Jul 5, 2021
…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]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants