| 358 | } |
| 359 | |
| 360 | acl_uint64 scan_dir::remove_all(int* nfiles /* = NULL */, |
| 361 | int* ndirs /* = NULL */) const |
| 362 | { |
| 363 | if (scan_ == NULL) { |
| 364 | return 0; |
| 365 | } |
| 366 | return (acl_uint64) acl_scan_dir_rm2(scan_, nfiles, ndirs); |
| 367 | } |
| 368 | |
| 369 | acl_uint64 scan_dir::remove_all(const char* path, bool recursive /* = true */, |
| 370 | int* nfiles /* = NULL */, int* ndirs /* = NULL */) |
nothing calls this directly
no test coverage detected