#endif // _di_f_directory_list_
#ifndef _di_f_directory_open_
- f_status_t f_directory_open(const f_string_static_t path, const bool dereference, int *id) {
+ f_status_t f_directory_open(const f_string_static_t path, const uint8_t dereference, int *id) {
#ifndef _di_level_0_parameter_checking_
if (!id) return F_status_set_error(F_parameter);
#endif // _di_level_0_parameter_checking_
#endif // _di_f_directory_open_
#ifndef _di_f_directory_open_at_
- f_status_t f_directory_open_at(const int at_id, const f_string_static_t path, const bool dereference, int *id) {
+ f_status_t f_directory_open_at(const int at_id, const f_string_static_t path, const uint8_t dereference, int *id) {
#ifndef _di_level_0_parameter_checking_
if (!id) return F_status_set_error(F_parameter);
#endif // _di_level_0_parameter_checking_
#endif // _di_f_directory_open_at_
#ifndef _di_f_directory_remove_
- f_status_t f_directory_remove(const f_string_static_t path, const int depth_max, const bool preserve) {
+ f_status_t f_directory_remove(const f_string_static_t path, const int depth_max, const uint8_t preserve) {
#ifndef _di_level_0_parameter_checking_
if (depth_max < 0) return F_status_set_error(F_parameter);
#endif // _di_level_0_parameter_checking_
if (depth_max) {
result = nftw(path.string, private_f_directory_remove_recursively, depth_max, FTW_DEPTH | FTW_PHYS);
-
- if (result == 0 && !preserve) {
- result = remove(path.string);
- }
}
- else {
- // Not recursively deleting and the path is requested to be preserved, so there is nothing to delete.
- if (preserve) return F_okay;
+ // Not recursively deleting and the path is requested to be preserved, so there is nothing to delete.
+ else if (preserve) return F_okay;
+ if (result == 0 && !preserve) {
result = remove(path.string);
}
#endif // _di_f_directory_remove_
#ifndef _di_f_directory_remove_custom_
- f_status_t f_directory_remove_custom(const f_string_static_t path, const int depth_max, const bool preserve, int (*custom) (const char *, const struct stat *, int, struct FTW *)) {
+ f_status_t f_directory_remove_custom(const f_string_static_t path, const int depth_max, const uint8_t preserve, int (*custom) (const char *, const struct stat *, int, struct FTW *)) {
#ifndef _di_level_0_parameter_checking_
if (depth_max < 0) return F_status_set_error(F_parameter);
#endif // _di_level_0_parameter_checking_
* @see open()
*/
#ifndef _di_f_directory_open_
- extern f_status_t f_directory_open(const f_string_static_t path, const bool dereference, int *id);
+ extern f_status_t f_directory_open(const f_string_static_t path, const uint8_t dereference, int *id);
#endif // _di_f_directory_open_
/**
* @see openat()
*/
#ifndef _di_f_directory_open_at_
- extern f_status_t f_directory_open_at(const int at_id, const f_string_static_t path, const bool dereference, int *id);
+ extern f_status_t f_directory_open_at(const int at_id, const f_string_static_t path, const uint8_t dereference, int *id);
#endif // _di_f_directory_open_at_
/**
* @see remove()
*/
#ifndef _di_f_directory_remove_
- extern f_status_t f_directory_remove(const f_string_static_t path, const int depth_max, const bool preserve);
+ extern f_status_t f_directory_remove(const f_string_static_t path, const int depth_max, const uint8_t preserve);
#endif // _di_f_directory_remove_
/**
* @see remove()
*/
#ifndef _di_f_directory_remove_custom_
- extern f_status_t f_directory_remove_custom(const f_string_static_t path, const int depth_max, const bool preserve, int (*custom) (const char *, const struct stat *, int, struct FTW *));
+ extern f_status_t f_directory_remove_custom(const f_string_static_t path, const int depth_max, const uint8_t preserve, int (*custom) (const char *, const struct stat *, int, struct FTW *));
#endif // _di_f_directory_remove_custom_
/**