Features:
Opens a file.
object.Open(
Filename As String,
Mode As String)
Mode Constants.
File. Returns the File objects if successful; otherwise, NULL.
If the Web-based script is not authenticated to eDirectory with appropriate rights, an error is returned.
This example opens the file text.txt in writing mode (FIO_CREATE_WRITE).
Set fio = CreateObject("ucx:fio")
Set fopen = fio.open("sys:temp\text.txt", FIO_CREATE_WRITE)
fopen.Close()