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 ?
|
feedback
|
|
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
| |||
|
feedback
|
|
The standard option is access='stream' in the open statement In F77, this was not standardized and often compiler dependent. | |||
|
feedback
|