Fortran · Runtime error

Error 29: File not found

What does Error 29: File not found mean in Fortran?

An OPEN statement could not locate the file named, most often because the working directory the program actually runs from differs from the one the developer assumed.

Error 29: File not foundIntel Fortran · gfortran

Condition

An OPEN statement could not locate the file named, most often because the working directory the program actually runs from differs from the one the developer assumed.

Fix

Check the file path against the actual working directory the job or script runs from, not the directory the source file lives in, and consider using an explicit full path for anything run outside an interactive shell.

Pending source verification. Not yet checked against official documentation.

Related runtime error