FileSystem: Add RenamePath()

This commit is contained in:
Connor McLaughlin
2021-07-03 16:48:22 +10:00
parent 762ab3ff43
commit 53cabbb134
2 changed files with 31 additions and 0 deletions

View File

@ -182,6 +182,9 @@ bool DirectoryExists(const char* Path);
// delete file
bool DeleteFile(const char* Path);
// rename file
bool RenamePath(const char* OldPath, const char* NewPath);
// open files
std::unique_ptr<ByteStream> OpenFile(const char* FileName, u32 Flags);