|
| StandardFileSystem () |
| Public constructor. More...
|
|
virtual | ~StandardFileSystem () |
| Public destructor. More...
|
|
const string | getFileName (const string &path, const string &fileName) override |
| Get file name. More...
|
|
void | list (const string &pathName, vector< string > &files, FileNameFilter *filter=nullptr, bool addDrives=false) override |
| List files for given path and filter by a file name filter if not null. More...
|
|
bool | isPath (const string &pathName) override |
| Check if file is a path. More...
|
|
bool | isDrive (const string &pathName) override |
| Check if file is a drive (applies to Microsoft Windows only) More...
|
|
bool | fileExists (const string &fileName) override |
| Check if file exists. More...
|
|
bool | isExecutable (const string &pathName, const string &fileName) override |
| Returns if file is a executable file. More...
|
|
void | setExecutable (const string &pathName, const string &fileName) override |
| Set up file to be an executable file. More...
|
|
uint64_t | getFileSize (const string &pathName, const string &fileName) override |
| Return file size of given file. More...
|
|
const string | getContentAsString (const string &pathName, const string &fileName) override |
| Get content as string. More...
|
|
void | setContentFromString (const string &pathName, const string &fileName, const string &content) override |
| Set content from string. More...
|
|
void | getContent (const string &pathName, const string &fileName, vector< uint8_t > &content) override |
| Get file content. More...
|
|
void | setContent (const string &pathName, const string &fileName, const vector< uint8_t > &content) override |
| Set file content. More...
|
|
void | getContentAsStringArray (const string &pathName, const string &fileName, vector< string > &content) override |
| Get file content as string array. More...
|
|
void | setContentFromStringArray (const string &pathName, const string &fileName, const vector< string > &content) override |
| Set file content as string array. More...
|
|
const string | getCanonicalPath (const string &pathName, const string &fileName) override |
| Get canonical path name. More...
|
|
const string | getCurrentWorkingPathName () override |
| Get current working path name. More...
|
|
void | changePath (const string &pathName) override |
| Change path. More...
|
|
const string | getPathName (const string &fileName) override |
| Get path name. More...
|
|
const string | getFileName (const string &fileName) override |
| Get file name. More...
|
|
void | createPath (const string &pathName) override |
| Create path. More...
|
|
void | removePath (const string &pathName, bool recursive) override |
| Remove path. More...
|
|
void | removeFile (const string &pathName, const string &fileName) override |
| Remove file. More...
|
|
bool | getThumbnailAttachment (const string &pathName, const string &fileName, vector< uint8_t > &thumbnailAttachmentContent) override |
| Reads a thumbnail attachment from binary file. More...
|
|
bool | getThumbnailAttachment (const vector< uint8_t > &content, vector< uint8_t > &thumbnailAttachmentContent) override |
| Reads a thumbnail attachment from data vector. More...
|
|
virtual | ~FileSystemInterface () |
| Public destructor. More...
|
|
virtual const string | getFileName (const string &pathName, const string &fileName)=0 |
| Get file name. More...
|
|
virtual uint64_t | getFileSize (const string &pathName, const string &fileName)=0 |
| Return file size of given file. More...
|
|
virtual const string | getContentAsString (const string &pathName, const string &fileName)=0 |
| Get content as string. More...
|
|
virtual void | setContentFromString (const string &pathName, const string &fileName, const string &content)=0 |
| Set content from string. More...
|
|
virtual void | getContent (const string &pathName, const string &fileName, vector< uint8_t > &content)=0 |
| Get file content. More...
|
|
virtual void | setContent (const string &pathName, const string &fileName, const vector< uint8_t > &content)=0 |
| Set file content. More...
|
|
virtual void | getContentAsStringArray (const string &pathName, const string &fileName, vector< string > &content)=0 |
| Get file content as string array. More...
|
|
virtual void | setContentFromStringArray (const string &pathName, const string &fileName, const vector< string > &content)=0 |
| Set file content as string array. More...
|
|
virtual void | list (const string &pathName, vector< string > &files, FileNameFilter *filter=nullptr, bool addDrives=false)=0 |
| List files for given path and filter by a file name filter if not null. More...
|
|
virtual bool | isPath (const string &pathName)=0 |
| Check if file is a path. More...
|
|
virtual bool | isDrive (const string &pathName)=0 |
| Check if file is a drive (applies to Microsoft Windows only) More...
|
|
virtual bool | fileExists (const string &fileName)=0 |
| Check if file exists. More...
|
|
virtual bool | isExecutable (const string &pathName, const string &fileName)=0 |
| Returns if file is a executable file. More...
|
|
virtual void | setExecutable (const string &pathName, const string &fileName)=0 |
| Set up file to be an executable file. More...
|
|
virtual const string | getCanonicalPath (const string &pathName, const string &fileName)=0 |
| Get canonical path name. More...
|
|
virtual const string | getCurrentWorkingPathName ()=0 |
| Get current working path name. More...
|
|
virtual void | changePath (const string &pathName)=0 |
| Change path. More...
|
|
virtual const string | getPathName (const string &fileName)=0 |
| Get path name. More...
|
|
virtual const string | getFileName (const string &fileName)=0 |
| Get file name. More...
|
|
virtual void | createPath (const string &pathName)=0 |
| Create path. More...
|
|
virtual void | removePath (const string &pathName, bool recursive)=0 |
| Remove path. More...
|
|
virtual void | removeFile (const string &pathName, const string &fileName)=0 |
| Remove file. More...
|
|
virtual bool | getThumbnailAttachment (const string &pathName, const string &fileName, vector< uint8_t > &thumbnailAttachmentContent)=0 |
| Reads a thumbnail attachment from binary file. More...
|
|
virtual bool | getThumbnailAttachment (const vector< uint8_t > &content, vector< uint8_t > &thumbnailAttachmentContent)=0 |
| Reads a thumbnail attachment from data vector. More...
|
|
Standard file system implementation.
- Author
- Andreas Drewke
Definition at line 21 of file StandardFileSystem.h.