PRB: Opening Scratch File with Units 0, 5, or 6 Causes F6202

ID: Q87982

4.00 4.01 4.10 5.00 5.10 1.00 1.00a | 4.10 5.00 5.10 | 1.00 4.00

MS-DOS                              | OS/2           | WINDOWS NT
  kbprb

The information in this article applies to:

SYMPTOMS

Programs that open an unformatted scratch file with the unit number 0, 5, or 6 may cause the following error:

   run-time error F6202: OPEN(CON)
   -terminal I/O not consistent with OPEN options

CAUSE

The unit numbers 0, 5, and 6 for the open statement have been pre-assigned to do formatted I/0 on keyboard and screen. Opening unformatted scratch files with these unit numbers causes the runtime to attempt to open the keyboard or screen for unformatted I/O, which generates the above error. This is expected and correct behavior.

RESOLUTION

To avoid this error, open the scratch file with any number other than 0, 5, and 6.

MORE INFORMATION

Sample Code #1

The following code generates the error:

      open(6, form='unformatted')
      end

Sample Code #2

The following code illustrates a correct usage of the open statement for creating an unformatted scratch file:

      open(3, form='unformatted')
      end

Additional reference words: 4.00 4.10 5.00 5.10 1.00
KBCategory:    kbprb
KBSubcategory: FORTLngIss
Keywords          : kbcode kberrmsg kbFortranPS kbLangFortran 
Version           : 4.00 4.01 4.10 5.00 5.10 1.00 1.
Platform          : MS-DOS NT OS/2 WINDOWS

Last Reviewed: May 23, 1998