فهرست منبع

Fix for #6057 FileSystem.stat() fails on directories (#6058)

Looks like it's a windows-only issue. Thanks for the fix.
Sebastian Thomschke 8 سال پیش
والد
کامیت
0264e9eecd
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      std/php/_std/sys/FileSystem.hx

+ 1 - 1
std/php/_std/sys/FileSystem.hx

@@ -39,7 +39,7 @@ class FileSystem {
 	}
 
 	public static function stat( path : String ) : FileStat {
-		untyped __php__("$fp = fopen($path, \"r\"); $fstat = fstat($fp); fclose($fp);");
+		untyped __php__("$fstat = stat($path);");
 		return untyped {
 			gid   : __php__("$fstat['gid']"),
 			uid   : __php__("$fstat['uid']"),