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