Fortran · Runtime error
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.
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.
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.