|
|||||
|
||||||
Other Library Functions |
function |
vfsRead |
Library: File system utilities (OMVFS legacy)
Include: omvfs.xin |
Return type: String source Returns: An OmniMark source object to the opened file |
define external string source function vfsRead value vfsFile file
Argument definitions
Use vfsRead to read the contents of a vfsFile and return them in an OmniMark source.
You must include the following line at the beginning of your OmniMark program:
include "omvfs.xin"
The vfsFile object file must:
No other process can have an exclusive (write) lock on the entire file or any part of it that you attempt to read (external exception VFS217).
The locking exception can be thrown at any point while reading the file (external exception VFS217).
External exception VFS300 is thrown for any general OS operation failure. The text accompanying the exception will contain details on the reason for the failure.
Read the file myscript.xom
include "omvfs.xin" process local vfsFile myFile . . . set myFile to vfsOpen "/programs/myscript.xom" for VFS-READ output vfsRead myFile
Copyright © Stilo International plc, 1988-2010.