mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-23 12:05:45 +00:00
fs: implement DeleteDirectoryRecursively
This commit is contained in:
parent
0dbc73270c
commit
b2fa64ec75
8 changed files with 70 additions and 1 deletions
|
@ -111,6 +111,13 @@ public:
|
|||
*/
|
||||
virtual bool DeleteDirectory(const Path& path) const = 0;
|
||||
|
||||
/**
|
||||
* Delete a directory specified by its path and anything under it
|
||||
* @param path Path relative to the archive
|
||||
* @return Whether the directory could be deleted
|
||||
*/
|
||||
virtual bool DeleteDirectoryRecursively(const Path& path) const = 0;
|
||||
|
||||
/**
|
||||
* Create a file specified by its path
|
||||
* @param path Path relative to the Archive
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue