| 337 | if (dir_entry.d_type == file::TT_DT_REG) { |
| 338 | std::string file_path = file::getChildPath(state->getCurrentPath(), dir_entry.d_name); |
| 339 | struct stat st; |
| 340 | if (stat(file_path.c_str(), &st) == 0) { |
| 341 | // Format file size in human-readable format |
| 342 | const char* size_suffix; |
no outgoing calls
no test coverage detected