mirror of
https://github.com/cemu-project/Cemu.git
synced 2024-11-23 01:29:19 +01:00
FSA: Add missing path translations (#413)
This commit is contained in:
parent
76c75f767b
commit
2461464ba7
@ -441,7 +441,7 @@ bool fsc_nextDir(FSCVirtualFile* fscFile, FSCDirEntry* dirEntry)
|
|||||||
/*
|
/*
|
||||||
* Create directory
|
* Create directory
|
||||||
*/
|
*/
|
||||||
bool fsc_createDir(char* path, sint32* fscStatus)
|
bool fsc_createDir(const char* path, sint32* fscStatus)
|
||||||
{
|
{
|
||||||
fscDeviceC* fscDevice = NULL;
|
fscDeviceC* fscDevice = NULL;
|
||||||
*fscStatus = FSC_STATUS_UNDEFINED;
|
*fscStatus = FSC_STATUS_UNDEFINED;
|
||||||
@ -461,7 +461,7 @@ bool fsc_createDir(char* path, sint32* fscStatus)
|
|||||||
/*
|
/*
|
||||||
* Rename file or directory
|
* Rename file or directory
|
||||||
*/
|
*/
|
||||||
bool fsc_rename(char* srcPath, char* dstPath, sint32* fscStatus)
|
bool fsc_rename(const char* srcPath, const char* dstPath, sint32* fscStatus)
|
||||||
{
|
{
|
||||||
std::string srcDevicePath;
|
std::string srcDevicePath;
|
||||||
std::string dstDevicePath;
|
std::string dstDevicePath;
|
||||||
@ -481,7 +481,7 @@ bool fsc_rename(char* srcPath, char* dstPath, sint32* fscStatus)
|
|||||||
/*
|
/*
|
||||||
* Delete file or subdirectory
|
* Delete file or subdirectory
|
||||||
*/
|
*/
|
||||||
bool fsc_remove(char* path, sint32* fscStatus)
|
bool fsc_remove(const char* path, sint32* fscStatus)
|
||||||
{
|
{
|
||||||
std::string devicePath;
|
std::string devicePath;
|
||||||
fscDeviceC* fscDevice = NULL;
|
fscDeviceC* fscDevice = NULL;
|
||||||
|
@ -167,9 +167,9 @@ void fsc_unmountAll();
|
|||||||
|
|
||||||
FSCVirtualFile* fsc_open(const char* path, FSC_ACCESS_FLAG accessFlags, sint32* fscStatus, sint32 maxPriority=FSC_PRIORITY_MAX);
|
FSCVirtualFile* fsc_open(const char* path, FSC_ACCESS_FLAG accessFlags, sint32* fscStatus, sint32 maxPriority=FSC_PRIORITY_MAX);
|
||||||
FSCVirtualFile* fsc_openDirIterator(const char* path, sint32* fscStatus);
|
FSCVirtualFile* fsc_openDirIterator(const char* path, sint32* fscStatus);
|
||||||
bool fsc_createDir(char* path, sint32* fscStatus);
|
bool fsc_createDir(const char* path, sint32* fscStatus);
|
||||||
bool fsc_rename(char* srcPath, char* dstPath, sint32* fscStatus);
|
bool fsc_rename(const char* srcPath, const char* dstPath, sint32* fscStatus);
|
||||||
bool fsc_remove(char* path, sint32* fscStatus);
|
bool fsc_remove(const char* path, sint32* fscStatus);
|
||||||
bool fsc_nextDir(FSCVirtualFile* fscFile, FSCDirEntry* dirEntry);
|
bool fsc_nextDir(FSCVirtualFile* fscFile, FSCDirEntry* dirEntry);
|
||||||
void fsc_close(FSCVirtualFile* fscFile);
|
void fsc_close(FSCVirtualFile* fscFile);
|
||||||
uint32 fsc_getFileSize(FSCVirtualFile* fscFile);
|
uint32 fsc_getFileSize(FSCVirtualFile* fscFile);
|
||||||
|
@ -328,26 +328,26 @@ namespace iosu
|
|||||||
|
|
||||||
FSStatus FSAProcessCmd_remove(FSAClient* client, FSAIpcCommand* cmd)
|
FSStatus FSAProcessCmd_remove(FSAClient* client, FSAIpcCommand* cmd)
|
||||||
{
|
{
|
||||||
char* path = (char*)cmd->cmdRemove.path;
|
std::string path = __FSATranslatePath(client, (char*)cmd->cmdRemove.path);
|
||||||
sint32 fscStatus = FSC_STATUS_FILE_NOT_FOUND;
|
sint32 fscStatus = FSC_STATUS_FILE_NOT_FOUND;
|
||||||
fsc_remove(path, &fscStatus);
|
fsc_remove(path.c_str(), &fscStatus);
|
||||||
return FSA_convertFSCtoFSStatus(fscStatus);
|
return FSA_convertFSCtoFSStatus(fscStatus);
|
||||||
}
|
}
|
||||||
|
|
||||||
FSStatus FSAProcessCmd_makeDir(FSAClient* client, FSAIpcCommand* cmd)
|
FSStatus FSAProcessCmd_makeDir(FSAClient* client, FSAIpcCommand* cmd)
|
||||||
{
|
{
|
||||||
char* path = (char*)cmd->cmdMakeDir.path;
|
std::string path = __FSATranslatePath(client, (char*)cmd->cmdMakeDir.path);
|
||||||
sint32 fscStatus = FSC_STATUS_FILE_NOT_FOUND;
|
sint32 fscStatus = FSC_STATUS_FILE_NOT_FOUND;
|
||||||
fsc_createDir(path, &fscStatus);
|
fsc_createDir(path.c_str(), &fscStatus);
|
||||||
return FSA_convertFSCtoFSStatus(fscStatus);
|
return FSA_convertFSCtoFSStatus(fscStatus);
|
||||||
}
|
}
|
||||||
|
|
||||||
FSStatus FSAProcessCmd_rename(FSAClient* client, FSAIpcCommand* cmd)
|
FSStatus FSAProcessCmd_rename(FSAClient* client, FSAIpcCommand* cmd)
|
||||||
{
|
{
|
||||||
char* srcPath = (char*)cmd->cmdRename.srcPath;
|
std::string srcPath = __FSATranslatePath(client, (char*)cmd->cmdRename.srcPath);
|
||||||
char* dstPath = (char*)cmd->cmdRename.dstPath;
|
std::string dstPath = __FSATranslatePath(client, (char*)cmd->cmdRename.dstPath);
|
||||||
sint32 fscStatus = FSC_STATUS_FILE_NOT_FOUND;
|
sint32 fscStatus = FSC_STATUS_FILE_NOT_FOUND;
|
||||||
fsc_rename(srcPath, dstPath, &fscStatus);
|
fsc_rename(srcPath.c_str(), dstPath.c_str(), &fscStatus);
|
||||||
return FSA_convertFSCtoFSStatus(fscStatus);
|
return FSA_convertFSCtoFSStatus(fscStatus);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user