diff options
Diffstat (limited to '')
| -rw-r--r-- | src/common/file_util.cpp | 16 | ||||
| -rw-r--r-- | src/common/file_util.h | 5 |
2 files changed, 16 insertions, 5 deletions
diff --git a/src/common/file_util.cpp b/src/common/file_util.cpp index 7aeda737f..190cac6d9 100644 --- a/src/common/file_util.cpp +++ b/src/common/file_util.cpp | |||
| @@ -884,11 +884,21 @@ std::string_view RemoveTrailingSlash(std::string_view path) { | |||
| 884 | return path; | 884 | return path; |
| 885 | } | 885 | } |
| 886 | 886 | ||
| 887 | std::string SanitizePath(std::string_view path_) { | 887 | std::string SanitizePath(std::string_view path_, bool with_platform_slashes) { |
| 888 | std::string path(path_); | 888 | std::string path(path_); |
| 889 | std::replace(path.begin(), path.end(), '\\', '/'); | 889 | char type1 = '\\'; |
| 890 | char type2 = '/'; | ||
| 891 | |||
| 892 | if (with_platform_slashes) { | ||
| 893 | #ifdef _WIN32 | ||
| 894 | type1 = '/'; | ||
| 895 | type2 = '\\'; | ||
| 896 | #endif | ||
| 897 | } | ||
| 898 | |||
| 899 | std::replace(path.begin(), path.end(), type1, type2); | ||
| 890 | path.erase(std::unique(path.begin(), path.end(), | 900 | path.erase(std::unique(path.begin(), path.end(), |
| 891 | [](char c1, char c2) { return c1 == '/' && c2 == '/'; }), | 901 | [type2](char c1, char c2) { return c1 == type2 && c2 == type2; }), |
| 892 | path.end()); | 902 | path.end()); |
| 893 | return std::string(RemoveTrailingSlash(path)); | 903 | return std::string(RemoveTrailingSlash(path)); |
| 894 | } | 904 | } |
diff --git a/src/common/file_util.h b/src/common/file_util.h index d0987fb57..ca63d7466 100644 --- a/src/common/file_util.h +++ b/src/common/file_util.h | |||
| @@ -182,8 +182,9 @@ std::vector<T> SliceVector(const std::vector<T>& vector, size_t first, size_t la | |||
| 182 | return std::vector<T>(vector.begin() + first, vector.begin() + first + last); | 182 | return std::vector<T>(vector.begin() + first, vector.begin() + first + last); |
| 183 | } | 183 | } |
| 184 | 184 | ||
| 185 | // Removes trailing slash, makes all '\\' into '/', and removes duplicate '/'. | 185 | // Removes trailing slash, makes all '\\' into '/', and removes duplicate '/'. Makes '/' into '\\' |
| 186 | std::string SanitizePath(std::string_view path); | 186 | // if windows and with_platform_slashes is true. |
| 187 | std::string SanitizePath(std::string_view path, bool with_platform_slashes = false); | ||
| 187 | 188 | ||
| 188 | // simple wrapper for cstdlib file functions to | 189 | // simple wrapper for cstdlib file functions to |
| 189 | // hopefully will make error checking easier | 190 | // hopefully will make error checking easier |