summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Zach Hilman2018-08-03 11:47:35 -0400
committerGravatar Zach Hilman2018-08-08 21:18:45 -0400
commit3f82dad1e411130e309074a1547fb2104257f95d (patch)
tree136536a8aa82f557bb6a9f50e85ccad5819a4baa /src
parentvfs: Add VfsFilesystem interface and default implementation (diff)
downloadyuzu-3f82dad1e411130e309074a1547fb2104257f95d.tar.gz
yuzu-3f82dad1e411130e309074a1547fb2104257f95d.tar.xz
yuzu-3f82dad1e411130e309074a1547fb2104257f95d.zip
file_util: Add platform-specific slash option to SanitizePath
Diffstat (limited to '')
-rw-r--r--src/common/file_util.cpp16
-rw-r--r--src/common/file_util.h5
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
887std::string SanitizePath(std::string_view path_) { 887std::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 '\\'
186std::string SanitizePath(std::string_view path); 186// if windows and with_platform_slashes is true.
187std::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