Node: LStat Intrinsic (function), Next: LTime Intrinsic, Previous: LStat Intrinsic (subroutine), Up: Table of Intrinsic Functions
LStat(File, SArray)
LStat: INTEGER(KIND=1)
function.
File: CHARACTER
; scalar; INTENT(IN).
SArray: INTEGER(KIND=1)
; DIMENSION(13); INTENT(OUT).
Intrinsic groups: unix
.
Description:
Obtains data about the given file File and places them in the array
SArray.
A null character (CHAR(0)
) marks the end of
the name in File--otherwise,
trailing blanks in File are ignored.
If File is a symbolic link it returns data on the
link itself, so the routine is available only on systems that support
symbolic links.
The values in this array are extracted from the
stat
structure as returned by fstat(2)
q.v., as follows:
Not all these elements are relevant on all systems. If an element is not relevant, it is returned as 0.
Returns 0 on success or a nonzero error code
(ENOSYS
if the system does not provide lstat(2)
).
For information on other intrinsics with the same name: See LStat Intrinsic (subroutine).