mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-12 06:07:55 -05:00
Added CreateDirectory function to service/fs.cpp, and in Archive.
This commit is contained in:
@ -36,6 +36,13 @@ public:
|
||||
*/
|
||||
std::unique_ptr<File> OpenFile(const std::string& path, const Mode mode) const override;
|
||||
|
||||
/**
|
||||
* Create a directory specified by its path
|
||||
* @param path Path relative to the archive
|
||||
* @return Whether the directory could be created
|
||||
*/
|
||||
bool CreateDirectory(const std::string& path) const override;
|
||||
|
||||
/**
|
||||
* Open a directory specified by its path
|
||||
* @param path Path relative to the archive
|
||||
|
Reference in New Issue
Block a user