A SERVICE OF

logo

MediaScript Objects and Methods 25
length()
list()
mkdir()
read()
readNextLine()
remove()
rename()
rmdir()
write()
new File()
The File object needs to be constructed using the new File () constructor.
Syntax
var Test = new File(
<"filename">
);
Parameters
filename - specifies a string containing the filename and path with which the object is
associated. The default is an empty string. The string must be in quotes. If the string does
not specify a file system the default is the write file system. See “File Systems” on page 14
for more information.
clear()
Clears the contents of the file pointed to by the file object, if the file already exists.
Syntax
<object name>.clear();
Parameters
This function takes no parameters.
close()
Closes the file pointer and flushes any output immediately.
Syntax
<object name>.close();
Parameters
This function takes no parameters.