Next: LTIME, Previous: LSHIFT, Up: Intrinsic Procedures
LSTAT
— Get file statusLSTAT
is identical to STAT, except that if path is a symbolic link,
then the link itself is statted, not the file that it refers to.
The elements in BUFF
are the same as described by STAT.
This intrinsic is provided in both subroutine and function forms; however,
only one form can be used in any given program unit.
CALL LSTAT(FILE, BUFF [, STATUS])
FILE | The type shall be CHARACTER(*) , a valid path within the file system.
|
BUFF | The type shall be INTEGER(4), DIMENSION(13) .
|
STATUS | (Optional) status flag of type INTEGER(4) . Returns 0
on success and a system specific error code otherwise.
|