qp.hlp (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
FILE Keyword
  Keywords Contents Index                                   Back
 
  FILE [ OF <type> ]
 
  Description
 
    FILE is a type used to declare a variable that points to an
    external file.
 
    Use FILE without specifying a componant type to declare an untyped
    file of bytes. Untyped files are useful for low-level access.
 
    Use FILE OF <type> to declare a file of any structured or simple
    type except a file type or type that has a file-type component.
 
    The type FILE OF Text is similar to but distinct from the type
    Char. Declare a file variable as type Text when reading or writing
    text in the form of lines.
 
  See also:  Data Types Hierarchy, Text