Add relative filesystem

This commit is contained in:
2026-05-01 09:58:10 -05:00
parent 86b062771a
commit 266ef5f830
8 changed files with 322 additions and 1 deletions

View File

@@ -170,6 +170,11 @@ namespace Tesses::Framework::Filesystem {
if(this->deleteOnDestroy && this->parent->DirectoryExists(p))
this->parent->DeleteDirectoryRecurse(p);
}
std::shared_ptr<FSWatcher> TempFS::CreateWatcher(std::shared_ptr<VFS> vfs, VFSPath path)
{
return FSWatcher::Create(vfs,path);
}
TempFS::~TempFS()
{
VFSPath p;