contentsconceptssyntaxlibrariessampleserrorsindex
Full text search
operator   file...is readable    
    Related Concepts  

Summary   Boolean

Returns true if the file is readable, false otherwise. Using isnt instead of is will reverse the results.

 

Syntax

  file string-expression (is | isnt) readable


Purpose

This operator returns true if the file named by the string expression is readable by the OmniMark program. This can be done before executing an action that requires a readable file. If the file does not exist, it is (obviously) not readable.

If the file does not exist or is not readable, the programmer can choose an alternative path.

For example, the following code tests whether or not a file exists or is readable and, if not, it notes the error:

  find "\input{" [any except "}"]+ => filename "}"
    do when file filename is readable
      submit file filename
    else
      put #error "File %x(filename) doesn't exist.%n"
      put #error "Processing continues... %n"
    done  

      Related Concepts
   File tests
   Security considerations
 
----  

Top [CONTENTS] [CONCEPTS] [SYNTAX] [LIBRARIES] [SAMPLES] [ERRORS] [INDEX]

Generated: April 21, 1999 at 2:01:05 pm
If you have any comments about this section of the documentation, send email to [email protected]

Copyright © OmniMark Technologies Corporation, 1988-1999.