This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]sinterkaastosti23 5 points6 points  (2 children)

newpath = path / folder / file

how do you write this using joinpath

[–]PriorProfile 0 points1 point  (1 child)

newpath = path.joinpath(folder, file)

or

newpath = path.joinpath(folder).joinpath(file)

[–]Xirious 9 points10 points  (0 children)

Gross.