| 412 | } |
| 413 | |
| 414 | bool is_dir_exists(const char* _path) |
| 415 | { |
| 416 | struct stat file_info; |
| 417 | |
| 418 | if (stat(_path, &file_info) == 0 && file_info.st_mode & S_IFDIR) |
| 419 | { |
| 420 | return true; |
| 421 | } |
| 422 | |
| 423 | return false; |
| 424 | } |
| 425 | |
| 426 | bool ignore_name(const char* _name) |
| 427 | { |
no test coverage detected