swirl
Guide to OmniMark 7   OmniMark home
docs home 
IndexConceptsTasksSyntaxLibrariesLegacy LibrariesErrors
 
  Related Syntax     Other Library Functions  
function  

vfs.writer

 
 

Library: General, File system utilities (OMVFS)
Import: omvfs.xmd
Return type: output
Returns: 

An OmniMark output object to the opened file.


Declaration

  export external output function writer
          of      value file file-ref

Argument definitions

file-ref
The vfs.file object associated with the file to be written to.


Purpose

You can use vfs.writer to attach an OmniMark stream to a file so that you can send output to that file. In the following program, vfs.open is used to open the file notes.txt. Then vfs.writer is used to attach the open file to an OmniMark stream for writing:

  import "omvfs.xmd" prefixed by vfs.

  process
    local vfs.file output-file
    local stream output-stream
    set output-file to vfs.open "/temp/notes.txt"
       for vfs.read-write-mode
    open output-stream as vfs.writer of output-file
    using output as output-stream
       submit #main-input
       ;data is written by find rules

If your program is running in an environment where other programs may be accessing the file you are writing to, it is advisable to lock the file while writing:

  import "omvfs.xmd" prefixed by vfs.

  process
    local vfs.file output-file
    local stream output-stream
    set output-file to vfs.open "/temp/Notes.txt"
       for vfs.read-write-mode
    vfs.lock output-file
    open output-stream as vfs.writer of output-file
    using output as output-stream
       submit #main-input
       ;data is written by find rules
    vfs.unlock output-file

Exceptions

The following exceptions may occur:

    Related Syntax
   vfs.open
   vfs.lock
   vfs.unlock
   vfs.reader
   vfs.file
 
  Other Library Functions
   vfs.change-directory
   vfs.change-owner
   vfs.change-permissions
   vfs.close
   vfs.connect
   vfs.connect-directory
   vfs.copy
   vfs.cursor-position
   vfs.default-certificates-file
   vfs.delete-directory
   vfs.delete-file
   vfs.describe
   vfs.describe-file
   vfs.directory
   vfs.directory-name
   vfs.disconnect
   vfs.file
   vfs.file-directory
   vfs.file-name
   vfs.link
   vfs.list
   vfs.lock
   vfs.make-directory
   vfs.move
   vfs.move-cursor
   vfs.omvfs-version
   vfs.open
   vfs.open-file-system
   vfs.open-ftp
   vfs.open-http
   vfs.open-https
   vfs.reader
   vfs.set-default-certificates-file
   vfs.truncate
   vfs.unlock
   vfs.writer
 
 

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

OmniMark 7.1.2 Documentation Generated: June 28, 2005 at 5:46:03 pm
If you have any comments about this section of the documentation, send email to [email protected]

Copyright © Stilo Corporation, 1988-2005.