swirl
Guide to OmniMark 9   OmniMark home
docs home 
IndexConceptsTasksSyntaxLibrariesLegacy LibrariesErrors
 
    Other Library Functions  
function  

vfsWrite

 
 

Library: File system utilities (OMVFS legacy)
Include: omvfs.xin
Return type: String sink

Returns: An OmniMark output object to the opened file.


Declaration

define external string sink function vfsWrite
     value  vfsFile  file

Argument definitions

file
is the vfsFile object associated with the file to be modified.


Purpose

Use vfsWrite to obtain an output object (to write) to an open file.

Requirements

You must include the following line at the beginning of your OmniMark program:

  include "omvfs.xin"

file must

Usage Notes

The locking exception can be thrown at any point during writing (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.

Example

This example shows appropriate steps to write to the file Notes.txt in the private directory.

  1. Open a file with read-write access.
  2. Lock the file to avoid an exception if the file is locked by another process.
  3. Obtain an output object for the file.
  4. Write to the file.
  5. Unlock the file.

  include "omvfs.xin"
  
  process
    local vfsFile myFile
    local stream foo
  	. . .
    set myFile to vfsOpen "/private/Notes.txt" 
    	 for VFS-READ-WRITE
  	. . .
    vfsLock myFile
    open foo as vfsWrite myFile
    put foo "Write this to the specified file. %n"
    vfsUnlock myFile

      Other Library Functions
 
 

Top [ INDEX ] [ CONCEPTS ] [ TASKS ] [ SYNTAX ] [ LIBRARIES ] [ LEGACY LIBRARIES ] [ ERRORS ]

OmniMark 9.1.0 Documentation Generated: September 2, 2010 at 1:38:10 pm
If you have any comments about this section of the documentation, please use this form.

Copyright © Stilo International plc, 1988-2010.