* - F_continue: Skip to the next iteration in the current loop.
* - F_done: Immedately return as success but do nothing else in this recursion.
*
- * The action parameters are:
+ * The action() and handle() parameters are:
* - recurse: Must be of type f_directory_recurse_do_t and represents this data. Must not be NULL.
- * - name: The name of the file or directory the action is being performed on (does not have the parent directory path) (may be empty at the top level).
+ * - name: The name of the file or directory the action is being performed on (does not have the parent directory path) (may be empty at the top level) (may not be a full path).
* - flag: A flag representing the particular action being performed.
*
* The handle() callback provides a callback identical to the handle() except that it is for handling exceptions in place of state.handle().