swirl Guide to OmniMark 5   OmniMark home
docs home 
IndexConceptsTasksSyntaxLibrariesOMX VariablesErrors
 
    Related Concepts  
operator   file...exists    

Return type: Boolean
Returns:       

Returns true if the named file exists and false otherwise.



Syntax
  file string-expression exists


Purpose

An operator that tests whether a named file exists. Useful for avoiding overwriting a file that already exists with a new one.

For example, the following shows how a file...exists test can be used to avoid overwriting an existing file:

  global stream error-strm
  ...
  do when file "errors.log" exists
    put #error "File errors.log already exists.%n"
    put #error "Please delete or rename it before running this program.%n"
    halt with 1
  else
    open error-strm as file "errors.log"
  done

      Related Concepts
   File tests
   Security considerations
 
----  

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

Generated: August 11, 2000 at 3:07:14 pm
If you have any comments about this section of the documentation, send email to docerrors@omnimark.com

Copyright © OmniMark Technologies Corporation, 1988-2000.