viant / toolbox

Toolbox - go utility library
Apache License 2.0
197 stars 29 forks source link

Updates to support windows paths for file service #49

Closed aleichter closed 1 year ago

aleichter commented 1 year ago

toolbox file storage services throws errors on windows for windows file paths. Toolbox relies on the net/url package to parse URLs including nix file paths. nix file paths comply with URL formats so they pass the url.Parse without returning an error. Windows file paths do not pass this parse method by design. This update resolves this issue for file services

adranwit commented 1 year ago

Tnx Andrew