|
@@ -55,12 +55,22 @@ extern class FileSystem {
|
|
|
|
|
|
/**
|
|
|
Returns the full path of the file or directory specified by `relPath`,
|
|
|
- which is relative to the current working directory.
|
|
|
+ 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.
|
|
|
**/
|
|
|
static function fullPath( relPath : String ) : String;
|
|
|
|
|
|
+ /**
|
|
|
+ Returns the full path of the file or directory specified by `relPath`,
|
|
|
+ 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;
|
|
|
+
|
|
|
/**
|
|
|
Tells if the file or directory specified by `path` is a directory.
|
|
|
|