I want to access a text file in a C-like fashion. The option CARRIAGECONTROL= 'NONE' apparently achieves this, according to this page. Is it a standard option ?

link|improve this question

72% accept rate
feedback

2 Answers

up vote 3 down vote accepted

If by "C-like fashion" you mean read the file as a stream of bytes, there was no standard way to do this before Fortran 2003. However many compilers offered it as an extension, like the manual of the Intel compiler on the webpage you refered to. Since Fortran 2003, there is a standard way of opening a file for stream access which is

ACCESS='STREAM'
link|improve this answer
feedback

The standard option is access='stream' in the open statement

In F77, this was not standardized and often compiler dependent.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.