mirror of
https://git.suyu.dev/suyu/suyu
synced 2026-03-13 05:01:06 +00:00
fs: implement DeleteDirectoryRecursively
This commit is contained in:
@@ -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();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user