rpcsx/rpcs3/Emu/FS/vfsLocalDir.cpp

67 lines
1.3 KiB
C++
Raw Normal View History

#include "stdafx.h"
#include "vfsDevice.h"
#include "vfsLocalDir.h"
vfsLocalDir::vfsLocalDir(vfsDevice* device) : vfsDirBase(device)
{
}
vfsLocalDir::~vfsLocalDir()
{
}
bool vfsLocalDir::Open(const std::string& path)
{
2015-04-15 16:27:37 +02:00
if (!vfsDirBase::Open(path) || !dir.Open(path))
{
return false;
2015-04-15 16:27:37 +02:00
}
std::string name;
2015-04-15 16:27:37 +02:00
for (bool is_ok = dir.GetFirst(&name); is_ok; is_ok = dir.GetNext(&name))
{
2015-04-15 16:27:37 +02:00
FileInfo file_info;
get_file_info(path + "/" + name, file_info);
m_entries.emplace_back();
2015-04-15 16:27:37 +02:00
DirEntryInfo& info = m_entries.back();
2015-04-15 16:27:37 +02:00
info.name = name;
info.flags |= file_info.isDirectory ? DirEntry_TypeDir | DirEntry_PermExecutable : DirEntry_TypeFile;
info.flags |= file_info.isWritable ? DirEntry_PermWritable | DirEntry_PermReadable : DirEntry_PermReadable;
info.size = file_info.size;
info.access_time = file_info.atime;
info.modify_time = file_info.mtime;
info.create_time = file_info.ctime;
}
return true;
}
bool vfsLocalDir::Create(const std::string& path)
{
2015-03-16 17:20:02 +01:00
return rMkdir(path);
}
2014-11-29 14:16:53 +01:00
bool vfsLocalDir::IsExists(const std::string& path) const
{
return rIsDir(path);
}
bool vfsLocalDir::Rename(const std::string& from, const std::string& to)
{
2015-03-16 17:20:02 +01:00
return rRename(from, to);
}
bool vfsLocalDir::Remove(const std::string& path)
{
return rRmdir(path);
}
2014-08-06 00:34:26 +02:00
bool vfsLocalDir::IsOpened() const
{
return dir.IsOpened() && vfsDirBase::IsOpened();
}