File Commands

Commands that interact with files on disk:

File Exists path v1.0.2

Returns @true if a file exists at the given path, otherwise @false.

Readable File Exists path v1.0.2

Returns @true if data can be read from the file at the given path, otherwise @false.

Writable File Exists path v1.0.2

Returns @true if data can be written to the file at the given path, otherwise @false.

Read From File path

Returns the contents of the file that exists at the specified path. The contents are read as uninterpreted data. Returns a @false value if the command fails.

Write to File data, path

Overwrites the file at the specified path with the given data. If the file does not exist, then creates it. Returns @true if the data was written, otherwise @false.

Append to File data, path

Appends the given data to the file at the specified path. If the file does not exist, then creates it. Returns @true if the data was written, otherwise @false.


Previous Chapter
Document Object Properties
<<  index  >>
 
Next Chapter
Bookmarks