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

@ -43,7 +43,7 @@ bool vfsLocalDir::Open(const std::string& path)
bool vfsLocalDir::Create(const std::string& path)
{
return rMkpath(path);
return rMkdir(path);
}
bool vfsLocalDir::IsExists(const std::string& path) const
@ -53,7 +53,7 @@ bool vfsLocalDir::IsExists(const std::string& path) const
bool vfsLocalDir::Rename(const std::string& from, const std::string& to)
{
return false;
return rRename(from, to);
}
bool vfsLocalDir::Remove(const std::string& path)