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 f22a0b2 commit 9f87468Copy full SHA for 9f87468
include/vfspp/FileInfo.hpp
@@ -91,7 +91,7 @@ class FileInfo final
91
private:
92
void Configure(const std::string& basePath, const std::string& fileName, bool isDir)
93
{
94
- m_Path = fs::path(basePath) / fs::path(fileName);
+ m_Path = (fs::path(basePath) / fs::path(fileName)).generic_string();
95
m_IsDir = isDir;
96
}
97
0 commit comments