mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-23 23:45:46 +00:00
fs: implement DeleteDirectoryRecursively
This commit is contained in:
parent
4b14e17b18
commit
96b0e9476b
8 changed files with 70 additions and 1 deletions
|
@ -51,6 +51,10 @@ bool DiskArchive::DeleteDirectory(const Path& path) const {
|
|||
return FileUtil::DeleteDir(mount_point + path.AsString());
|
||||
}
|
||||
|
||||
bool DiskArchive::DeleteDirectoryRecursively(const Path& path) const {
|
||||
return FileUtil::DeleteDirRecursively(mount_point + path.AsString());
|
||||
}
|
||||
|
||||
ResultCode DiskArchive::CreateFile(const FileSys::Path& path, u64 size) const {
|
||||
std::string full_path = mount_point + path.AsString();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue