mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-05 06:21:26 +12:00
VFS::CopyFile implemented
This commit is contained in:
parent
94b3cdf9e7
commit
16fe7919a0
5 changed files with 90 additions and 12 deletions
|
@ -14,9 +14,10 @@ bool rIsDir(const std::string& filename);
|
|||
bool rRmdir(const std::string& dir);
|
||||
bool rMkdir(const std::string& dir);
|
||||
bool rMkpath(const std::string& path);
|
||||
bool rRename(const std::string &from, const std::string &to);
|
||||
bool rExists(const std::string &path);
|
||||
bool rRemoveFile(const std::string &path);
|
||||
bool rRename(const std::string& from, const std::string& to);
|
||||
bool rCopy(const std::string& from, const std::string& to, bool overwrite);
|
||||
bool rExists(const std::string& path);
|
||||
bool rRemoveFile(const std::string& path);
|
||||
|
||||
enum rSeekMode
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue