Added memoryfilesystem and working on c wrapper

This commit is contained in:
2025-01-03 05:50:44 -06:00
parent 8e4ec4ee3e
commit 7e6f0f1fca
17 changed files with 1229 additions and 8 deletions

View File

@ -266,7 +266,9 @@ namespace Tesses::Framework::Filesystem
std::vector<std::string> paths;
if(this->path.empty()) return VFSPath();
paths.insert(paths.begin(), this->path.begin(), this->path.end()-1);
return VFSPath(paths);
auto res= VFSPath(paths);
res.relative = this->relative;
return res;
}
std::string VFSPath::GetFileName()