You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is an odd thing to do directly. But it comes up if e.g. you are doing a walkpath(dir) where one of the files is directly in dir (call its path filepath). And then you want the relpath(dirname(filepath), dir).
I believe it doesn't work because this package will calltryparse(S3Path, ".") in this case and AWSS3 tryparse returns nothing if the path doesn't have the s3:// URI. So I'm not sure which package should be responsible.
The text was updated successfully, but these errors were encountered:
Hmm, I suppose we could special case if there's a drive, since there does seem to be precedent for that in the base Julia docs now?
If path and startpath refer to different drives, the absolute path of path is returned.
In that case, the drive would be copied to the result and only the segments would be modified (e.g., s3://.). I haven't looked into whether this changed though, cause previously base julia ignored drives in relative paths.
MWE:
This is an odd thing to do directly. But it comes up if e.g. you are doing a
walkpath(dir)
where one of the files is directly indir
(call its pathfilepath
). And then you want therelpath(dirname(filepath), dir)
.I believe it doesn't work because this package will call
tryparse(S3Path, ".")
in this case and AWSS3tryparse
returnsnothing
if the path doesn't have thes3://
URI. So I'm not sure which package should be responsible.The text was updated successfully, but these errors were encountered: