1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- #ifndef FILE_HPP
- #define FILE_HPP
- #include "../base/Class.hpp"
- #include <string>
- #include <vector>
- namespace ls_std {
- class File : public Class {
- public:
- explicit File(std::string _absoluteFilePath);
- ~File() = default;
-
- bool operator==(File& _file);
- bool operator!=(File& _file);
-
- bool canExecute();
- void createNewFile();
- bool exists();
- std::string getAbsoluteFilePath();
- std::string getName();
- long getSize();
- bool isDirectory();
- bool isFile();
- void makeDirectory();
- void makeDirectories();
- void remove();
- private:
- std::string absoluteFilePath {};
- bool _exists(const std::string& _path);
- bool _isDirectory(const std::string& _path);
- bool _isFile(const std::string& _path);
- static int _mkdir(const std::string& _path);
- static std::string _normalizePath(std::string _path);
- static std::vector<std::string> _splitIntoSubDirectoryNames(const std::string& _path);
- };
- }
- #endif
|