D:\aaa\bbb\ccc\ddd\abc.txt --> D:/aaa/bbb/ccc/ddd/abc.txt D:\aaa\bbb\ccc\ddd\abc.txt --> D:/aaa/bbb/ccc/ddd/abc.txt
| 43 | // D:\aaa\bbb\ccc\ddd\abc.txt --> D:/aaa/bbb/ccc/ddd/abc.txt |
| 44 | // D:\aaa\bbb\ccc\ddd\abc.txt --> D:/aaa/bbb/ccc/ddd/abc.txt |
| 45 | static std::string convertPathFormatToUnixStyle(const std::string_view& path) |
| 46 | { |
| 47 | std::string ret{path}; |
| 48 | std::replace(ret.begin(), ret.end(), '\\', '/'); |
| 49 | return ret; |
| 50 | } |
| 51 | |
| 52 | static std::string convertPathFormatToWinStyle(const std::string_view& path) |
| 53 | { |
no test coverage detected