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
Observed by @nohehf in #437. The behavior of path-stem and path-dir is unclear on . and ... One would assume that (path-join (path-dir path) (path-filename path)) would always return the original path, but that is not the case.
The problem is that . and .. are not considered file names by the underlying Rust path functions, even if they are the only component in the path.
The text was updated successfully, but these errors were encountered:
Observed by @nohehf in #437. The behavior of
path-stem
andpath-dir
is unclear on.
and..
. One would assume that(path-join (path-dir path) (path-filename path))
would always return the original path, but that is not the case.The problem is that
.
and..
are not considered file names by the underlying Rust path functions, even if they are the only component in the path.The text was updated successfully, but these errors were encountered: