Lines Matching refs:filepath
63 char filepath[PATH_MAX];
75 int result = snprintf(filepath, sizeof(filepath), "%s/%s", path, entry->d_name);
76 if (result >= sizeof(filepath)) {
79 remove_directory(filepath);
81 int result = snprintf(filepath, sizeof(filepath), "%s/%s", path, entry->d_name);
82 if (result >= sizeof(filepath)) {
85 if (remove(filepath) == -1) {
86 t_error("%s error in remove test nftw filepath! \n", __func__);