18 Oct
2021
18 Oct
'21
2:06 a.m.
On Sun, Oct 17, 2021 at 7:04 PM Gavin Lambert via Boost
Getting back to this point, as I mentioned in another branch it looks like {std,boost}::filesystem breaks down "/foo/bar/baz.htm" to { "/", "foo/", "bar/", "baz.htm" }.
I'm not sure that's viable or correct for URL paths though.
On a related note, you should strongly consider cross-compatibility with {std,boost}::filesystem::path anyway, since inevitably an URL-parsing library will hit one of the following scenarios sooner or later:
Yeah, I agree that there needs to be something to facilitate working with paths that are formed from URLs. I haven't given it any thought yet because I am still trying to finish the baseline functionality. Thanks