Closed rmisev closed 10 months ago
All modified and coverable lines are covered by tests :white_check_mark:
Comparison is base (
7842b29
) 99.74% compared to head (c3026b1
) 99.74%.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Use
file_path_format::native
as default in theurl_from_file_path
function.The path format detection algorithm was simple: if the first path character is
/
, then it is POSIX format, otherwise - Windows. But in some cases it is ambiguous, e.g. path//h\sn\p
is recognized as POSIX path, but it can also be Windows UNC path, because/
is allowed as directory separator in Windows paths.