We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd5b7cd commit ddca340Copy full SHA for ddca340
Engine/Source/Common/Src/FileSystem.cpp
@@ -8,7 +8,7 @@
8
namespace Common::Internal {
9
std::filesystem::path GetUnixStylePath(const std::string& inPath)
10
{
11
- return Common::StringUtils::Replace(std::filesystem::weakly_canonical(inPath).string(), "\\", "/");
+ return StringUtils::Replace(inPath, "\\", "/");
12
}
13
14
std::filesystem::path GetUnixStylePath(const std::filesystem::path& inPath)
0 commit comments