1
filelocation = "../"//filename
PRINT *, "Attempting to open ", TRIM(filename)
OPEN(fh1, FILE = filelocation, STATUS='old',IOSTAT = io)
有誰能告訴我請問第一行」../"//是什麼意思?filelocation的含義=「../"//filename
filelocation = "../"//filename
PRINT *, "Attempting to open ", TRIM(filename)
OPEN(fh1, FILE = filelocation, STATUS='old',IOSTAT = io)
有誰能告訴我請問第一行」../"//是什麼意思?filelocation的含義=「../"//filename
字符串
../
是Linux的當前工作目錄的父目錄。這可能會或可能不會在Windows機器上工作。這兩個字符
//
表示用於字符串拼接的Fortran運算符。所以
"../"//filename
套filelocation
來指在程序認爲它在執行目錄的父目錄中名爲filename
文件。