2
0
luboslenco 3 жил өмнө
parent
commit
f46fcf844b

+ 1 - 1
Sources/arm/sys/Path.hx

@@ -159,7 +159,7 @@ class Path {
 	}
 
 	public static function isFolder(p: String): Bool {
-		return p.indexOf(".") == -1;
+		return p.replace("\\", "/").split("/").pop().indexOf(".") == -1;
 	}
 
 	public static function isProtected(): Bool {