mirror of
https://git.tesses.org/tesses50/tessesframework.git
synced 2026-08-03 17:15:31 +00:00
Push failed torrent code as backup before I remove it
This commit is contained in:
@@ -109,6 +109,16 @@ namespace Tesses::Framework::Filesystem {
|
||||
if(this->vfs == nullptr) return;
|
||||
this->vfs->DeleteFile(path);
|
||||
}
|
||||
void TempFS::Lock(VFSPath path)
|
||||
{
|
||||
if(this->vfs == nullptr) return;
|
||||
this->vfs->Lock(path);
|
||||
}
|
||||
void TempFS::Unlock(VFSPath path)
|
||||
{
|
||||
if(this->vfs == nullptr) return;
|
||||
this->vfs->Unlock(path);
|
||||
}
|
||||
void TempFS::CreateSymlink(VFSPath existingFile, VFSPath symlinkFile)
|
||||
{
|
||||
if(this->vfs == nullptr) return;
|
||||
@@ -202,4 +212,5 @@ namespace Tesses::Framework::Filesystem {
|
||||
{
|
||||
Close();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user