diff options
| author | bunnei <bunneidev@gmail.com> | 2016-10-03 20:34:56 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-10-03 20:34:56 -0400 |
| commit | 7ed97fb89aa8cfe39a36f1958de61e69b2e5026c (patch) | |
| tree | 779a58d37d20674d97b648b9546413c1ce8f7d6a /src/core/file_sys/ivfc_archive.cpp | |
| parent | 49b10339bf87ce69dafee78eb3957fb6d51424d8 (diff) | |
| parent | 257e7afb79293012afed68ea21703dcf51b7d78a (diff) | |
Merge pull request #2106 from wwylele/delete-recursive
FS: implement DeleteDirectoryRecursively
Diffstat (limited to 'src/core/file_sys/ivfc_archive.cpp')
| -rw-r--r-- | src/core/file_sys/ivfc_archive.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/file_sys/ivfc_archive.cpp b/src/core/file_sys/ivfc_archive.cpp index 49cc1de10..af59d296d 100644 --- a/src/core/file_sys/ivfc_archive.cpp +++ b/src/core/file_sys/ivfc_archive.cpp @@ -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()); |
