mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-31 22:00:10 +01:00
VFS::DeleteAll, VFS::GetDirSize, VFS::Exists, VFS::Rename (VFS::RenameFile, VFS::RenameDir removed)
18 lines
309 B
C++
18 lines
309 B
C++
#pragma once
|
|
#include "vfsDirBase.h"
|
|
#include "Utilities/File.h"
|
|
|
|
class vfsLocalDir : public vfsDirBase
|
|
{
|
|
private:
|
|
u32 m_pos;
|
|
fs::dir m_dir;
|
|
|
|
public:
|
|
vfsLocalDir(vfsDevice* device);
|
|
virtual ~vfsLocalDir();
|
|
|
|
virtual bool Open(const std::string& path) override;
|
|
virtual bool IsOpened() const override;
|
|
};
|