- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
I get error in linux:
forrtl: severe (104): incorrect ACCESS= specifier value for connected file, unit 60, file /home/rong/carmenrt_building/aermap/430/test/RECDETAIL.OUT
The code:
OPEN(DOMK,FILE='DOMDETAIL.OUT', ACCESS= 'APPEND')
So my question is :
Is the ACCESS='Append' alike Fortran 95 syntax supported, or what is the alternative?
forrtl: severe (104): incorrect ACCESS= specifier value for connected file, unit 60, file /home/rong/carmenrt_building/aermap/430/test/RECDETAIL.OUT
The code:
OPEN(DOMK,FILE='DOMDETAIL.OUT', ACCESS= 'APPEND')
So my question is :
Is the ACCESS='Append' alike Fortran 95 syntax supported, or what is the alternative?
コピーされたリンク
2 返答(返信)
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
I use POSITION='APPEND' in OPEN seems works
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
ACCESS='APPEND' is not standard Fortran, though Intel Fortran does accept it as an extension. I can't come up with a program that gives the error you show - can you post a small but complete program that does so?
POSITION='APPEND' is standard-conforming and preferable.
POSITION='APPEND' is standard-conforming and preferable.
