Update win32 for Path::getStatusInfo
authorChris Lattner <sabre@nondot.org>
Fri, 28 Jul 2006 22:32:09 +0000 (22:32 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 28 Jul 2006 22:32:09 +0000 (22:32 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29401 91177308-0d34-0410-b5e6-96231b3b80d8

lib/System/Win32/Path.inc

index 15c686d2640d5c2643e9d9ef4beadcd5416ab14b..a7c7d21bcf0e372ef08df7af557cb9b6d65f9f34 100644 (file)
@@ -333,11 +333,12 @@ Path::getLast() const {
   return path.substr(pos+1);
 }
 
-void
-Path::getStatusInfo(StatusInfo& info) const {
+bool
+Path::getStatusInfo(FileStatus &info, std::string *ErrStr) const {
   WIN32_FILE_ATTRIBUTE_DATA fi;
   if (!GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &fi))
-    ThrowError("getStatusInfo():" + std::string(path) + ": Can't get status: ");
+    return GetError("getStatusInfo():" + std::string(path) +
+                    ": Can't get status: ", ErrStr);
 
   info.fileSize = fi.nFileSizeHigh;
   info.fileSize <<= sizeof(fi.nFileSizeHigh)*8;
@@ -351,6 +352,7 @@ Path::getStatusInfo(StatusInfo& info) const {
   info.modTime.fromWin32Time(ft);
 
   info.isDir = fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY;
+  return false;
 }
 
 static bool AddPermissionBits(const std::string& Filename, int bits) {
@@ -691,7 +693,7 @@ Path::renamePathOnDisk(const Path& newName) {
 }
 
 bool
-Path::setStatusInfoOnDisk(const StatusInfo& si) const {
+Path::setStatusInfoOnDisk(const FileStatus &si) const {
   // FIXME: should work on directories also.
   if (!isFile()) return false;