|
@@ -55,7 +55,7 @@ extern class FileSystem {
|
|
|
|
|
|
/**
|
|
|
Returns the full path of the file or directory specified by `relPath`,
|
|
|
- which is relative to the current working directory. Symlinks will be
|
|
|
+ which is relative to the current working directory. Symlinks will be
|
|
|
followed and the path will be normalized.
|
|
|
|
|
|
If `relPath` is null, the result is unspecified.
|
|
@@ -64,12 +64,13 @@ extern class FileSystem {
|
|
|
|
|
|
/**
|
|
|
Returns the full path of the file or directory specified by `relPath`,
|
|
|
- which is relative to the current working directory. The path doesn't
|
|
|
+ which is relative to the current working directory. The path doesn't
|
|
|
have to exist.
|
|
|
|
|
|
If `relPath` is null, the result is unspecified.
|
|
|
**/
|
|
|
- static function absPath( relPath : String ) : String;
|
|
|
+ //@:require(haxe_ver >= 3.2)
|
|
|
+ static function absolutePath( relPath : String ) : String;
|
|
|
|
|
|
/**
|
|
|
Tells if the file or directory specified by `path` is a directory.
|