mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-11 15:07:57 -05:00
Services/FS: Implemented DeleteExtSaveData, CreateSystemSaveData and DeleteSystemSaveData
Also fixed a bug with CreateExtSaveData that made it unable to create ExtSaveData archives in the SDMC directory.
This commit is contained in:
@ -28,4 +28,29 @@ private:
|
||||
std::string base_path;
|
||||
};
|
||||
|
||||
/**
|
||||
* Constructs a path to the concrete SystemSaveData archive in the host filesystem based on the
|
||||
* input Path and base mount point.
|
||||
* @param mount_point The base mount point of the SystemSaveData archives.
|
||||
* @param path The path that identifies the requested concrete SystemSaveData archive.
|
||||
* @returns The complete path to the specified SystemSaveData archive in the host filesystem
|
||||
*/
|
||||
std::string GetSystemSaveDataPath(const std::string& mount_point, const Path& path);
|
||||
|
||||
/**
|
||||
* Constructs a path to the base folder to hold concrete SystemSaveData archives in the host file system.
|
||||
* @param mount_point The base folder where this folder resides, ie. SDMC or NAND.
|
||||
* @returns The path to the base SystemSaveData archives' folder in the host file system
|
||||
*/
|
||||
std::string GetSystemSaveDataContainerPath(const std::string& mount_point);
|
||||
|
||||
/**
|
||||
* Constructs a FileSys::Path object that refers to the SystemSaveData archive identified by
|
||||
* the specified high save id and low save id.
|
||||
* @param high The high word of the save id for the archive
|
||||
* @param low The low word of the save id for the archive
|
||||
* @returns A FileSys::Path to the wanted archive
|
||||
*/
|
||||
Path ConstructSystemSaveDataBinaryPath(u32 high, u32 low);
|
||||
|
||||
} // namespace FileSys
|
||||
|
Reference in New Issue
Block a user