From 3f8576a6abedfa7c16d6f13dbdbabaa695cf60bb Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 3 Oct 2014 22:37:51 +0200 Subject: Remove some duplicate code --- src/libutil/util.cc | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/libutil/util.cc') diff --git a/src/libutil/util.cc b/src/libutil/util.cc index 436580651dd0..99d2b1e0adce 100644 --- a/src/libutil/util.cc +++ b/src/libutil/util.cc @@ -227,6 +227,16 @@ DirEntries readDirectory(const Path & path) } +unsigned char getFileType(const Path & path) +{ + struct stat st = lstat(path); + if (S_ISDIR(st.st_mode)) return DT_DIR; + if (S_ISLNK(st.st_mode)) return DT_LNK; + if (S_ISREG(st.st_mode)) return DT_REG; + return DT_UNKNOWN; +} + + string readFile(int fd) { struct stat st; -- cgit 1.4.1