diff options
| author | wwylele <wwylele@gmail.com> | 2016-10-02 11:29:04 +0800 |
|---|---|---|
| committer | wwylele <wwylele@gmail.com> | 2016-10-02 11:29:16 +0800 |
| commit | 96b0e9476bdd010051bec427d365b49437801f4d (patch) | |
| tree | 6a80eef8c0fbbf7e891755a102fcc8674efb1f26 /src/core/file_sys/disk_archive.h | |
| parent | 4b14e17b18e20f7f8077f0c7efc0e3a44ca8ca2a (diff) | |
fs: implement DeleteDirectoryRecursively
Diffstat (limited to 'src/core/file_sys/disk_archive.h')
| -rw-r--r-- | src/core/file_sys/disk_archive.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/file_sys/disk_archive.h b/src/core/file_sys/disk_archive.h index 2165f27f9..59ebb2002 100644 --- a/src/core/file_sys/disk_archive.h +++ b/src/core/file_sys/disk_archive.h @@ -38,6 +38,7 @@ public: ResultCode DeleteFile(const Path& path) const override; bool RenameFile(const Path& src_path, const Path& dest_path) const override; bool DeleteDirectory(const Path& path) const override; + bool DeleteDirectoryRecursively(const Path& path) const override; ResultCode CreateFile(const Path& path, u64 size) const override; bool CreateDirectory(const Path& path) const override; bool RenameDirectory(const Path& src_path, const Path& dest_path) const override; |
