file_util: Add getter for NAND registration directory
This commit is contained in:
parent
10aac376d1
commit
b70a831608
|
@ -750,6 +750,12 @@ std::string GetHactoolConfigurationPath() {
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::string GetNANDRegistrationDir(bool system) {
|
||||||
|
if (system)
|
||||||
|
return GetUserPath(UserPath::NANDDir) + "system/Contents/registered/";
|
||||||
|
return GetUserPath(UserPath::NANDDir) + "user/Contents/registered/";
|
||||||
|
}
|
||||||
|
|
||||||
size_t WriteStringToFile(bool text_file, const std::string& str, const char* filename) {
|
size_t WriteStringToFile(bool text_file, const std::string& str, const char* filename) {
|
||||||
return FileUtil::IOFile(filename, text_file ? "w" : "wb").WriteBytes(str.data(), str.size());
|
return FileUtil::IOFile(filename, text_file ? "w" : "wb").WriteBytes(str.data(), str.size());
|
||||||
}
|
}
|
||||||
|
|
|
@ -129,6 +129,8 @@ const std::string& GetUserPath(UserPath path, const std::string& new_path = "");
|
||||||
|
|
||||||
std::string GetHactoolConfigurationPath();
|
std::string GetHactoolConfigurationPath();
|
||||||
|
|
||||||
|
std::string GetNANDRegistrationDir(bool system = false);
|
||||||
|
|
||||||
// Returns the path to where the sys file are
|
// Returns the path to where the sys file are
|
||||||
std::string GetSysDirectory();
|
std::string GetSysDirectory();
|
||||||
|
|
||||||
|
|
Reference in New Issue