diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 19:12:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 19:12:14 +0000 |
commit | 4b8a0f3f3dcf60dac2ce308ea08d413a535af29f (patch) | |
tree | 0f09c0ad2a4d0f535d89040a63dc3a866a6606e6 /dirs.h | |
parent | Initial commit. (diff) | |
download | reprepro-upstream/5.4.4.tar.xz reprepro-upstream/5.4.4.zip |
Adding upstream version 5.4.4.upstream/5.4.4
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | dirs.h | 29 |
1 files changed, 29 insertions, 0 deletions
@@ -0,0 +1,29 @@ +#ifndef REPREPRO_DIRS_H +#define REPREPRO_DIRS_H + +#ifndef REPREPRO_ERROR_H +#warning "What is happening here?" +#include "error.h" +#endif +#ifndef REPREPRO_STRLIST_H +#warning "What is happening here?" +#include "strlist.h" +#endif + +/* create a directory, return RET_NOTHING if already existing */ +retvalue dirs_create(const char *); +/* create recursively all parent directories before the last '/' */ +retvalue dirs_make_parent(const char *); +/* create dirname and any '/'-separated part of it */ +retvalue dirs_make_recursive(const char *); +/* create directory and parents as needed, and save count to remove them later */ +retvalue dir_create_needed(const char *, int *); +void dir_remove_new(const char *, int); + +/* Behave like dirname(3) */ +retvalue dirs_getdirectory(const char *, /*@out@*/char **); + +const char *dirs_basename(const char *); + +bool isdir(const char *); +#endif |