Intel® Fortran Compiler 18.0 Developer Guide and Reference

PXFFSTAT

POSIX Subroutine: Gets a file's status information.

Module

USE IFPOSIX

CALL PXFFSTAT (ifildes,jstat,ierror)

ifildes

(Input) INTEGER(4). The file descriptor for an opened file.

jstat

(Input) INTEGER(4). A handle of structure stat.

ierror

(Output) INTEGER(4). The error status.

If successful, ierror is set to zero; otherwise, an error code.

The PXFFSTAT subroutine puts the status information for the file associated with ifildes into the structure associated with handle jstat.

NOTE

To get a handle for an instance of the stat structure, use PXFSTRUCTCREATE with the string 'stat' for the structure name.

See Also