瀏覽代碼

Fix File class

- fix "canRead" test for unix like systems
Patrick-Christopher Mattulat 2 年之前
父節點
當前提交
d009697987
共有 1 個文件被更改,包括 5 次插入1 次删除
  1. 5 1
      source/ls_std/io/File.cpp

+ 5 - 1
source/ls_std/io/File.cpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-15
- * Changed:         2021-09-17
+ * Changed:         2021-09-24
  *
  * */
 
@@ -362,6 +362,10 @@ bool ls_std::File::_isReadableUnix(const std::string &_path)
       readable = (_stat.st_mode & (unsigned) S_IREAD) != 0;
     }
   }
+  else
+  {
+    throw ls_std::FileOperationException{};
+  }
 
   return readable;
 }