| 2665 | std::string full = dir + "/" + entry->d_name; |
| 2666 | |
| 2667 | struct stat st; |
| 2668 | if (stat(full.c_str(), &st) == 0 && S_ISDIR(st.st_mode)) { |
| 2669 | // Recursion, same suffix, new dir |
| 2670 | std::string new_pattern = full + "/" + suffix; |
no outgoing calls
no test coverage detected