sys_fs bugfixes

This commit is contained in:
Nekotekina 2015-03-16 19:20:02 +03:00
parent 7ce45a3bae
commit bee6b84733
7 changed files with 118 additions and 65 deletions

View file

@ -124,4 +124,14 @@ bool vfsLocalFile::IsOpened() const
bool vfsLocalFile::Exists(const std::string& path)
{
return rExists(path);
}
}
bool vfsLocalFile::Rename(const std::string& from, const std::string& to)
{
return rRename(from, to);
}
bool vfsLocalFile::Remove(const std::string& path)
{
return rRemoveFile(path);
}