| 28 | } |
| 29 | |
| 30 | uint64_t TaskFile::GetSizeOfPath(std::wstring_view path) |
| 31 | { |
| 32 | return std::filesystem::is_directory(path) ? |
| 33 | getFileSizeInFolder(path) : std::filesystem::file_size(path); |
| 34 | } |
| 35 | |
| 36 | int32_t TaskFile::GetNumFiles() |
| 37 | { |
nothing calls this directly
no test coverage detected