mkdir
| directory: string
| Creates the specified directory.
|
stdin
| File
| Attribute that contains a File object associated with standard input.
|
stdout
| File
| Attribute that contains a File object associated with standard output.
|
stderr
| File
| Attribute that contains a File object associated with the standard error output.
|
copy
| source: string
target: string
| Copy selected file. This method is not able to copy directories.
|
delete
| file: string
| Deletes a file or directory.
|
move
| source: string
target: string
| Moves (or renames) a file or directory.
|
isDirectory
| f: string
returns boolean
| Returns true if the specified file is a directory.
|
canRead
| f: string
returns boolean
| Returns true if the file can be read.
|
canWrite
| f: string
returns boolean
| Returns true if the file can be written.
|
getParent
| f: string
returns string
| Returns the parent directory of a file.
|