| 598 | return res; |
| 599 | } |
| 600 | bool IsDirectory(const std::string& vFilePathName) override { |
| 601 | namespace fs = std::filesystem; |
| 602 | return fs::is_directory(stringToPath(vFilePathName)); |
| 603 | } |
| 604 | void GetFileDateAndSize(const std::string& vFilePathName, const IGFD::FileType& vFileType, std::string& voDate, size_t& voSize) override { |
| 605 | namespace fs = std::filesystem; |
| 606 | fs::path fpath(vFilePathName); |
no test coverage detected