Contents | < Browse | Browse >

    Fopen()

  SYNOPSIS
    fh:=Fopen(name, mode)

  FUNCTION
    function opens DOS file using standard Open() command and stores
    the filehandle in global list of filehandles. All the opened files
    will be closed automatically at the end of program

  INPUTS
    name - name of file to be opened
    mode - open file mode

  RESULT
    fh - filehandle that can be used with any DOS command

  SEE ALSO
     Fclose() ,  ReadB() ,  WriteB()