fs: implement DeleteDirectoryRecursively

This commit is contained in:
wwylele
2016-10-02 11:29:04 +08:00
parent 4b14e17b18
commit 96b0e9476b
8 changed files with 70 additions and 1 deletions

View File

@ -43,6 +43,12 @@ bool IVFCArchive::DeleteDirectory(const Path& path) const {
return false;
}
bool IVFCArchive::DeleteDirectoryRecursively(const Path& path) const {
LOG_CRITICAL(Service_FS, "Attempted to delete a directory from an IVFC archive (%s).",
GetName().c_str());
return false;
}
ResultCode IVFCArchive::CreateFile(const Path& path, u64 size) const {
LOG_CRITICAL(Service_FS, "Attempted to create a file in an IVFC archive (%s).",
GetName().c_str());