| 62 | } |
| 63 | |
| 64 | Result<std::string> DoNormalizePath(std::string path) { |
| 65 | RETURN_NOT_OK(ValidatePath(path)); |
| 66 | ARROW_ASSIGN_OR_RAISE(auto fn, PlatformFilename::FromString(path)); |
| 67 | return fn.ToString(); |
| 68 | } |
| 69 | |
| 70 | #ifdef _WIN32 |
| 71 |
no test coverage detected