LSTAT — Get file status ¶LSTAT is identical to STAT — Get file status, except that if path is a
symbolic link, then the link itself is statted, not the file that it
refers to.
The elements in VALUES are the same as described by STAT — Get file status.
This intrinsic is provided in both subroutine and function forms; however, only one form can be used in any given program unit.
GNU extension
Subroutine, function
| CALL LSTAT(NAME, VALUES [, STATUS]) | 
| STATUS = LSTAT(NAME, VALUES) | 
| NAME | The type shall be CHARACTERof the default
kind, a valid path within the file system. | 
| VALUES | 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. | 
See STAT — Get file status for an example.
To stat an open file: 
FSTAT — Get file status 
To stat a file: 
STAT — Get file status