TDME2 1.9.121
|
File system interface. More...
#include <tdme/os/filesystem/FileSystemInterface.h>
Public Member Functions | |
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... | |
|
inlinevirtual |
Public destructor.
Definition at line 28 of file FileSystemInterface.h.
|
pure virtual |
|
pure virtual |
|
pure virtual |
Check if file exists.
fileName | file name |
Implemented in ArchiveFileSystem, and StandardFileSystem.
|
pure virtual |
Get canonical path name.
pathName | path name |
fileName | file name |
Implemented in ArchiveFileSystem, and StandardFileSystem.
|
pure virtual |
Get file content.
pathName | path name |
fileName | file name |
content | content vector |
tdme::os::filesystem::FileSystemException |
Implemented in ArchiveFileSystem, and StandardFileSystem.
|
pure virtual |
Get content as string.
pathName | path name |
fileName | file name |
tdme::os::filesystem::FileSystemException |
Implemented in ArchiveFileSystem, and StandardFileSystem.
|
pure virtual |
Get file content as string array.
pathName | path name |
fileName | file name |
content | content vector |
tdme::os::filesystem::FileSystemException |
Implemented in ArchiveFileSystem, and StandardFileSystem.
|
pure virtual |
Get current working path name.
Implemented in ArchiveFileSystem, and StandardFileSystem.
|
pure virtual |
Get file name.
fileName | file name |
Implemented in ArchiveFileSystem, and StandardFileSystem.
|
pure virtual |
Get file name.
pathName | path name |
fileName | file name |
tdme::os::filesystem::FileSystemException |
Implemented in ArchiveFileSystem, and StandardFileSystem.
|
pure virtual |
Return file size of given file.
pathName | path name |
fileName | file name |
Implemented in ArchiveFileSystem, and StandardFileSystem.
|
pure virtual |
Get path name.
fileName | file name |
Implemented in ArchiveFileSystem, and StandardFileSystem.
|
pure virtual |
Reads a thumbnail attachment from binary file.
pathName | path name |
fileName | file name |
thumbnailAttachmentContent | thumbnail attachment content |
Implemented in ArchiveFileSystem, and StandardFileSystem.
|
pure virtual |
Reads a thumbnail attachment from data vector.
content | content |
thumbnailAttachmentContent | thumbnail attachment content |
Implemented in ArchiveFileSystem, and StandardFileSystem.
|
pure virtual |
Check if file is a drive (applies to Microsoft Windows only)
pathName | path name |
Implemented in ArchiveFileSystem, and StandardFileSystem.
|
pure virtual |
Returns if file is a executable file.
pathName | path name |
fileName | file name |
Implemented in ArchiveFileSystem, and StandardFileSystem.
|
pure virtual |
Check if file is a path.
pathName | path name |
Implemented in ArchiveFileSystem, and StandardFileSystem.
|
pure virtual |
List files for given path and filter by a file name filter if not null.
pathName | path name |
files | files |
filter | filter or null, this filter can be created on stack as ownership will not be taken over |
addDrives | add drives to list(applies to Microsoft Windows only) |
Implemented in ArchiveFileSystem, and StandardFileSystem.
|
pure virtual |
Remove file.
pathName | path name |
fileName | file name |
Implemented in ArchiveFileSystem, and StandardFileSystem.
|
pure virtual |
Remove path.
pathName | path name |
recursive | remove recursive |
Implemented in ArchiveFileSystem, and StandardFileSystem.
|
pure virtual |
Set file content.
pathName | path name |
fileName | file name |
content | content vector |
tdme::os::filesystem::FileSystemException |
Implemented in ArchiveFileSystem, and StandardFileSystem.
|
pure virtual |
Set content from string.
pathName | path name |
fileName | file name |
content | content string |
tdme::os::filesystem::FileSystemException |
Implemented in ArchiveFileSystem, and StandardFileSystem.
|
pure virtual |
Set file content as string array.
pathName | path name |
fileName | file name |
content | string array |
tdme::os::filesystem::FileSystemException |
Implemented in ArchiveFileSystem, and StandardFileSystem.
|
pure virtual |
Set up file to be an executable file.
pathName | path name |
fileName | file name |
tdme::os::filesystem::FileSystemException |
Implemented in ArchiveFileSystem, and StandardFileSystem.