FileOpen()

Opens up the file at the given locatio for either reading or writing

Usage

OBJECT = FileOpen( src, mode, charset )
Argument Summary
src srcFile
mode mode - file open type: read, readbinary, append, write [optional]
charset charset [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

FileOpen(
   src=?, 
   mode=?, 
   charset=?
);

Supports passing parameters as a structure using ArgumentCollection:

FileOpen( ArgumentCollection={
   src : ?, 
   mode : ?, 
   charset : ?
} );