123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2020-08-15
- * Changed: 2020-11-20
- *
- * */
- #ifndef LS_STD_FILE_HPP
- #define LS_STD_FILE_HPP
- #include <ls_std/base/Class.hpp>
- #include <string>
- #include <vector>
- #include <list>
- #include <ctime>
- #include <regex>
- #if defined(unix) || defined(__APPLE__)
- #include <dirent.h>
- #endif
- #ifdef _WIN32
- #include <windows.h>
- #endif
- namespace ls_std {
- class File : public Class {
- public:
- explicit File(std::string _absoluteFilePath);
- ~File() = default;
- // comparison operators
- bool operator==(File& _file);
- bool operator!=(File& _file);
- // additional functionality
- bool canExecute();
- bool canRead();
- bool canWrite();
- void createNewFile();
- bool exists();
- std::string getAbsoluteFilePath();
- std::string getName();
- std::string getParent();
- long getSize();
- bool isDirectory();
- bool isFile();
- time_t lastModified();
- std::list<std::string> list();
- std::list<std::string> listFiles();
- void makeDirectory();
- void makeDirectories();
- void remove();
- bool renameTo(const std::string& _newName);
- void reset(const std::string& _newPath);
- private:
- std::string absoluteFilePath {};
- #if defined(unix) || defined(__APPLE__)
- static void _addToFileListUnix(const std::string& _path, bool _withDirectories, dirent* directoryEntity, std::list<std::string>& _list);
- #endif
- #ifdef _WIN32
- static void _addToFileListWindows(const std::string& _path, bool _withDirectories, WIN32_FIND_DATA _data, std::list<std::string>& _list);
- #endif
- static bool _equals(File& _file, File& _foreignFile);
- static bool _exists(const std::string& _path);
- static std::string _getParent(const std::string& _path);
- static bool _isDirectory(const std::string& _path);
- static bool _isExecutable(const std::string& _path);
- static bool _isFile(const std::string& _path);
- #if defined(unix) || defined(__APPLE__)
- static bool _isReadableUnix(const std::string& _path);
- #endif
- #ifdef _WIN32
- static bool _isReadableWindows(const std::string& _path);
- #endif
- static bool _isWritable(const std::string& _path);
- static time_t _lastModified(const std::string& _path);
- static std::list<std::string> _list(const std::string& _path);
- static std::list<std::string> _listFiles(const std::string& _path);
- #if defined(unix) || defined(__APPLE__)
- static std::list<std::string> _listUnix(const std::string& _path, bool withDirectories);
- #endif
- #ifdef _WIN32
- static std::list<std::string> _listWindows(const std::string& _path, bool withDirectories);
- #endif
- static int _mkdir(const std::string& _path);
- static std::string _normalizePath(std::string _path);
- static std::string _reduceSeparators(const std::string& _path);
- static void _remove(const std::string& _path);
- #if defined(unix) || defined(__APPLE__)
- static void _removeUnix(const std::string& _path);
- #endif
- #ifdef _WIN32
- static void _removeWindows(const std::string& _path);
- #endif
- static bool _renameTo(const std::string& _oldName, const std::string& _newName);
- static std::string _replaceWrongSeparator(std::string _path);
- static std::vector<std::string> _splitIntoSubDirectoryNames(const std::string& _path);
- };
- }
- #endif
|