FIX: F6415 on OPEN Statement w/ MS-DOS APPEND CommandLast reviewed: September 16, 1997Article ID: Q79713 |
4.10 5.00 5.10
MS-DOS
kbprg kbbuglist kberrmsg
The information in this article applies to:
SYMPTOMSPrograms compiled with Microsoft FORTRAN version 4.1, 5.0, or 5.1, that attempt to open a file that exists in any of the directories specified with the MS-DOS APPEND command, may generate the following error:
run-time Error F6415: OPEN(filename) - File Already ExistsThis error may still be generated even if the full path to the filename is given. Microsoft FORTRAN versions earlier than 4.1 do not recognize directories specified using the APPEND command, and do not generate this error message.
RESOLUTIONDisabling the MS-DOS APPEND command removes this error message. Opening the file with STATUS='OLD' also prevents this error message.
STATUSMicrosoft has confirmed this to be a problem in Microsoft FORTRAN versions 4.1, 5.0, and 5.1 for MS-DOS. This problem was corrected in the Microsoft FORTRAN PowerSttion products.
MORE INFORMATIONThe following code generates the F6415 error message if the file TEST.DAT exists in a directory specified by the DOS APPEND path.
Sample Code #1
OPEN (1, FILE='Test.DAT') ENDA possible solution to this problem is shown below:
Sample Code #2
OPEN (1, FILE='Test.DAT', STATUS='OLD') END |
Additional reference words: 4.10 5.00 5.10
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |