Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法使用 Intel Fortran 在 Fortran 中获取文件大小?
我正在使用statwhich 在 gfortran 中效果很好,但在 ifort 中不可用。
stat
INQUIRE(FILE=filename, SIZE=file_size)
filename是一个字符标量,file_size是一个整数标量,将使用文件存储单元中的文件大小(ifort 上的“以字节为单位”)定义,如果无法确定大小,则为 -1。
filename
file_size