123456789101112131415161718192021222324252627 |
-
-
- #include <algorithm>
-
- #include "global.h"
- #include "utils/File.h"
- #include "utils/Folder.h"
-
- File::File(std::string file) : path(file) {
- size_t pos = file.rfind('/', file.length() - 2);
- name = file.substr(pos + 1);
- std::transform(name.begin(), name.end(), name.begin(), ::tolower);
- }
-
- std::string &File::getName() {
- return name;
- }
-
- std::string &File::getPath() {
- return path;
- }
|