diff options
Diffstat (limited to 'src/core/file_sys/archive.h')
-rw-r--r-- | src/core/file_sys/archive.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/core/file_sys/archive.h b/src/core/file_sys/archive.h index 1135d8804..2e79bb883 100644 --- a/src/core/file_sys/archive.h +++ b/src/core/file_sys/archive.h @@ -185,6 +185,20 @@ public: virtual std::unique_ptr<File> OpenFile(const Path& path, const Mode mode) const = 0; /** + * Delete a file specified by its path + * @param path Path relative to the archive + * @return Whether the file could be deleted + */ + virtual bool DeleteFile(const FileSys::Path& path) const = 0; + + /** + * Delete a directory specified by its path + * @param path Path relative to the archive + * @return Whether the directory could be deleted + */ + virtual bool DeleteDirectory(const FileSys::Path& path) const = 0; + + /** * Create a directory specified by its path * @param path Path relative to the archive * @return Whether the directory could be created |