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
Example, these are invalid: path.root().join("..") - this should just return the root path.join("/") - This should also return the root (this is how Path::join works) path.join("a///b") - This should be the same as path.join("a/b") (this is also how Path::join works)
Do you think it's a good idea to change the behavior of VfsPath::join()? It would certainly be more convenient for what I'm working on.