cppfs
1.2.0.5b71c2c98fb9
Cross-platform C++ file system library supporting multiple backends (Local-FS, SSH)
|
Interface for accessing file systems. More...
#include <cppfs/include/cppfs/AbstractFileSystem.h>
Public Member Functions | |
AbstractFileSystem () | |
Constructor. More... | |
virtual | ~AbstractFileSystem () |
Destructor. More... | |
virtual FileHandle | open (const std::string &path)=0 |
Open file or directory in file system. More... | |
virtual FileHandle | open (std::string &&path)=0 |
Open file or directory in file system. More... | |
Interface for accessing file systems.
cppfs::AbstractFileSystem::AbstractFileSystem | ( | ) |
Constructor.
|
virtual |
Destructor.
|
pure virtual |
Open file or directory in file system.
[in] | path | Path to file or directory |
Implemented in cppfs::SshFileSystem, cppfs::LocalFileSystem, and cppfs::LocalFileSystem.
|
pure virtual |
Open file or directory in file system.
[in] | path | Path to file or directory |
Implemented in cppfs::SshFileSystem, cppfs::LocalFileSystem, and cppfs::LocalFileSystem.