Functions | |
int | mntd_dir_is_dir (char *dirpath) |
Check if path is a directory. | |
int | mntd_dir_remove (char *dirpath) |
Remove one directory if it is empty. | |
int | mntd_dir_mkdirs (const char *pathname, mode_t mode, int *error) |
Make directories and all missing parent directories. | |
int | mntd_dir_rmdirs (char *dirname) |
Remove directories and file recursivly. |
|
Check if path is a directory.
Definition at line 63 of file mntd_dir.c. Referenced by mntd_dir_mkdirs(), mntd_dir_remove(), mntd_dir_rmdirs(), and mntd_volume_mount(). |
|
Make directories and all missing parent directories.
Definition at line 107 of file mntd_dir.c. References mntd_dir_is_dir(). Referenced by mntd_volume_mount(). |
|
Remove one directory if it is empty.
Definition at line 86 of file mntd_dir.c. References mntd_dir_is_dir(). Referenced by mntd_volume_mount(), and mntd_volume_umount(). |
|
Remove directories and file recursivly.
Definition at line 181 of file mntd_dir.c. References mntd_dir_is_dir(), mntd_file_is_file(), and mntd_file_remove(). Referenced by mntd_volume_mount(). |