cjkogan111
Technical User
Hello,
I downloaded gfortran (95) - mingw/native windows onto a windows XP OS.
I am trying to open a file outside of the default directory (bin)
I have tried the following methods:
OPEN(8,file='test\a.txt',status='old')
OPEN(8,file='c:\Program Files\gfortran\bin\test\a.txt',status='old')
For each, I get the following error -
Fortran runtime error: Invalid arguments
If I open a file in the default directory it works fine:
OPEN(8,file='a.txt',status='old')
Any suggestions?
Thanks,
cjkogan111
I downloaded gfortran (95) - mingw/native windows onto a windows XP OS.
I am trying to open a file outside of the default directory (bin)
I have tried the following methods:
OPEN(8,file='test\a.txt',status='old')
OPEN(8,file='c:\Program Files\gfortran\bin\test\a.txt',status='old')
For each, I get the following error -
Fortran runtime error: Invalid arguments
If I open a file in the default directory it works fine:
OPEN(8,file='a.txt',status='old')
Any suggestions?
Thanks,
cjkogan111