Software Archive
Read-only legacy content
17060 토론

Closed file rewound?

Intel_C_Intel
직원
2,328 조회수
Suppose I open a file, read a line or two, and then close it. Is that file automatically rewound? In others words, if I open it again later in the same program, will the file be repositioned to the beginning?

Thanks.
0 포인트
1 응답
Steven_L_Intel1
2,328 조회수
Position is a property of the file connection, not the file itself. Once you close the file, the connection goes away. Upon reopening, the position is the default, based on what you specified with POSITION=, if any. Note that the default is 'ASIS', which for Compaq Fortran is the same as 'REWIND'.

Steve
0 포인트
응답