mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-14 01:47:59 -05:00
fs: implement DeleteDirectoryRecursively
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user