VFS::CopyFile implemented

This commit is contained in:
Nekotekina 2015-04-13 17:46:10 +03:00
parent 94b3cdf9e7
commit 16fe7919a0
5 changed files with 90 additions and 12 deletions

View file

@ -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
{