Added "isDirectory" method to llvm::sys::Path.
authorTed Kremenek <kremenek@apple.com>
Tue, 18 Dec 2007 19:46:22 +0000 (19:46 +0000)
committerTed Kremenek <kremenek@apple.com>
Tue, 18 Dec 2007 19:46:22 +0000 (19:46 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45168 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/System/Path.h
lib/System/Unix/Path.inc
lib/System/Win32/Path.inc

index 57e09171c2c861395d349b273be1930e051aba7b..8ae8a006f8d0b3e7cf3bfd0da34b83ccd21eda3b 100644 (file)
@@ -321,7 +321,7 @@ namespace sys {
       /// shared library.
       /// @brief Determine if the path reference a dynamic library.
       bool isDynamicLibrary() const;
-
+    
       /// This function determines if the path name references an existing file
       /// or directory in the file system.
       /// @returns true if the pathname references an existing file or
@@ -330,6 +330,12 @@ namespace sys {
       /// the file system.
       bool exists() const;
 
+      /// This function determines if the path name refences an 
+      /// existing directory.
+      /// @returns true if the pathname references an existing directory.
+      /// @brief Determins if the path is a directory in the file system.
+      bool isDirectory() const;
+    
       /// This function determines if the path name references a readable file
       /// or directory in the file system. This function checks for
       /// the existence and readability (by the current program) of the file
index e4916baf280d71184c1089484467cac1276cb04b..9e90dda04e0522eaf579a45c4b7a6303d435a5aa 100644 (file)
@@ -288,6 +288,14 @@ Path::exists() const {
   return 0 == access(path.c_str(), F_OK );
 }
 
+bool
+Path::isDirectory() const {
+  struct stat buf;
+  if (0 != stat(path.c_str(), &buf))
+    return false;
+  return buf.st_mode & S_IFDIR ? true : false;
+}
+
 bool
 Path::canRead() const {
   return 0 == access(path.c_str(), F_OK | R_OK );
index 994bc671c13f85802838c4224d989ea8bb866c87..2484b8a744e15f4fe8f21f8108f2da0eac5548b0 100644 (file)
@@ -253,6 +253,13 @@ Path::exists() const {
   return attr != INVALID_FILE_ATTRIBUTES;
 }
 
+bool
+Path::isDirectory() const {
+  DWORD attr = GetFileAttributes(path.c_str());
+  return (attr != INVALID_FILE_ATTRIBUTES) &&
+         (attr & FILE_ATTRIBUTE_DIRECTORY);
+}
+
 bool
 Path::canRead() const {
   // FIXME: take security attributes into account.