File system utility for Haxe.
Requires Haxe 4. Only for sys
targets.
(Tested with: Haxe 4.2.5, eval
/hl
. Some methods are not available on java
).
PathString
: Path of file/directory. Underlying type ofFilePath
andDirectoryPath
.FilePath
: File path. The actual file does not necessarily have to exist.FileRef
: Represents a file that actually exists.DirectoryPath
: Directory path. The actual directory does not necessarily have to exist.DirectoryRef
: Represents a directory that actually exists.
The path is automatically converted to absolute when creating any value of the types above.
FileList
: Array ofFileRef
s.DirectoryList
: Array ofDirectoryRef
s.FileOrDirectoryPath
: Enum, eitherFilePath
orDirectoryPath
.FileOrDirectoryRef
: Enum, eitherFileRef
orDirectoryRef
.FileOrDirectoryList
: Array ofFileOrDirectoryRef
.
flag | description |
---|---|
locator_validation_disable | Skips validation of file/directory paths. |
See also: FAL Haxe libraries