diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-10-26 11:26:35 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2014-10-26 11:26:35 -0400 |
commit | abf869c4168fedffd0f992d2f215a924258c294b (patch) | |
tree | c5b24b4c9847dfd24dd7218a2a5f8295fc75253b /src/shared/util.c | |
parent | 5f5839857c805ec9960ecba7d9742fe90d2f5b4b (diff) |
label: move is_dir() to util.c
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src/shared/util.c')
-rw-r--r-- | src/shared/util.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/shared/util.c b/src/shared/util.c index 8c64174401..3cad297873 100644 --- a/src/shared/util.c +++ b/src/shared/util.c @@ -1373,6 +1373,20 @@ char *tempfn_xxxxxx(const char *p) { return t; } +int is_dir(const char* path, bool follow) { + struct stat st; + + if (follow) { + if (stat(path, &st) < 0) + return -errno; + } else { + if (lstat(path, &st) < 0) + return -errno; + } + + return !!S_ISDIR(st.st_mode); +} + int execute_command(const char *command, char *const argv[]) { pid_t pid; |