| 2095 | } |
| 2096 | |
| 2097 | inline bool is_dir(const std::string &path) { |
| 2098 | struct stat st; |
| 2099 | return stat(path.c_str(), &st) >= 0 && S_ISDIR(st.st_mode); |
| 2100 | } |
| 2101 | |
| 2102 | inline bool is_valid_path(const std::string &path) { |
| 2103 | size_t level = 0; |
no test coverage detected