Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef FILESYS_TOOLS_H
00018 #define FILESYS_TOOLS_H
00019
00020
00022
00023
00028 #include <string>
00029 #include <vector>
00030 #include <sys/types.h>
00031
00032 namespace AISNavigation {
00033
00038 std::string getFileExtension(const std::string& filename);
00039
00044 std::string getPureFilename(const std::string& filename);
00045
00050 std::string changeFileExtension(const std::string& filename, const std::string& newExt, bool stripDot = false);
00051
00056 std::string getBasename(const std::string& filename);
00057
00062 std::string getDirname(const std::string& filename);
00063
00067 bool fileExists(const char* filename);
00068
00072 bool isRegularFile(const char* filename);
00073
00077 bool isDirectory(const char* filename);
00078
00082 bool isSymbolicLink(const char* filename);
00083
00089 off_t getFileSize(const char* filename);
00090
00094 std::string getCurrentDateAsFilename();
00095
00097 time_t getLastModificationDate(const char* filename);
00098
00100 time_t getLastAccessDate(const char* filename);
00101
00103 time_t getLastStatusChangeDate(const char* filename);
00104
00109 bool createDirectory(const char* dirName, bool pub = false);
00110
00115 std::vector<std::string> getDirectoryElements(const char* dir, bool onlyFiles = false);
00116
00120 std::vector<std::string> getFilesByPattern(const char* pattern);
00121
00122 }
00123
00124 #endif