filelocation = "../"//filename
PRINT *, "Attempting to open ", TRIM(filename)
OPEN(fh1, FILE = filelocation, STATUS='old',IOSTAT = io)
有人能告诉我,第一行中“../”//的含义是什么?
答案 0 :(得分:1)
字符串
../
是Linux for 当前工作目录的父目录。这可能适用于Windows机器,也可能不适用。两个字符
//
表示字符串连接的Fortran运算符。所以
"../"//filename
将filelocation
设置为引用程序认为正在执行的目录的父目录中名为filename
的文件。