Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Turbo Pascal - <b> reset open file for processing pp 94</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 RESET                     Open File for Processing                    pp 94

 Syntax:  Reset (FileVar) ;

 Type:    File

 Form:    Procedure

 Purpose: Open disk file assigned to FileVar for reading.

 Notes:   File position pointer is reset to start of file.
          Text files opened with reset are read only.


 ----------------------------------------------------------------------------


 Usage:
       TYPE
          FileType = String [80]              ;  { Define record size    }
       VAR
          FileVar  : File of FileType         ;  { 80 byte record type   }
       CONST
          FileName : String [8] = 'Name.Ext'  ;  { Constant file name    }

       BEGIN
           Assign (FileVar,FileName)          ;  { Assign name to handle }
           Reset (FileVar)                    ;  { Open file handle      }
       END.

See Also: Assign File File Of Files ReWrite Reset

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson