| 243 | } |
| 244 | |
| 245 | uint64_t GetFileSize(std::string_view path) |
| 246 | { |
| 247 | uint64_t size = 0; |
| 248 | struct stat statInfo{}; |
| 249 | if (stat(std::string(path).c_str(), &statInfo) == 0) |
| 250 | { |
| 251 | size = statInfo.st_size; |
| 252 | } |
| 253 | return size; |
| 254 | } |
| 255 | #endif |
| 256 | |
| 257 | bool ShouldIgnoreCase() |
no test coverage detected