Unix and Linux Discussions Tagged with stat |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
1 |
17,604 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
8,952 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
5,271 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
79,929 |
UNIX for Beginners Questions & Answers |
|
|
|
9 |
16,742 |
Red Hat |
|
|
|
5 |
1,392 |
Shell Programming and Scripting |
|
|
|
4 |
2,357 |
Programming |
|
|
|
5 |
2,203 |
Shell Programming and Scripting |
|
|
|
9 |
7,500 |
UNIX for Dummies Questions & Answers |
|
|
|
14 |
22,013 |
Solaris |
|
|
|
4 |
2,446 |
Shell Programming and Scripting |
|
|
|
2 |
5,157 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
4,058 |
SCO |
|
|
|
3 |
64,384 |
Solaris |
|
|
|
3 |
6,173 |
IP Networking |
|
|
|
2 |
12,725 |
Programming |
|
|
|
1 |
4,925 |
Solaris |
|
|
|
3 |
18,648 |
Solaris |
|
|
|
8 |
5,927 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
9,984 |
Shell Programming and Scripting |
|
|
|
1 |
6,653 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
8,423 |
AIX |
|
|
|
2 |
8,716 |
Solaris |
|
|
|
0 |
5,400 |
Programming |
|
|
|
0 |
5,256 |
Shell Programming and Scripting |
|
|
|
3 |
3,240 |
Programming |
|
|
|
0 |
1,486 |
Software Releases - RSS News |
|
|
|
6 |
5,803 |
UNIX for Advanced & Expert Users |
|
|
|
3 |
24,660 |
IP Networking |
|
|
|
3 |
19,252 |
Shell Programming and Scripting |
|
|
|
0 |
993 |
Software Releases - RSS News |
|
|
|
0 |
973 |
Software Releases - RSS News |
|
|
|
2 |
6,702 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
1,074 |
Software Releases - RSS News |
|
|
|
0 |
959 |
Software Releases - RSS News |
|
|
|
3 |
9,934 |
UNIX for Advanced & Expert Users |
|
|
|
0 |
1,135 |
Software Releases - RSS News |
|
|
|
0 |
976 |
Software Releases - RSS News |
|
|
|
3 |
10,666 |
Shell Programming and Scripting |
|
|
|
3 |
4,290 |
Shell Programming and Scripting |
STAT(3F) STAT(3F)
NAME
stat, lstat, fstat - get file status
SYNOPSIS
integer function stat (name, statb)
character*(*) name
integer statb(12)
integer function lstat (name, statb)
character*(*) name
integer statb(12)
integer function fstat (lunit, statb)
integer statb(12)
DESCRIPTION
These routines return detailed information about a file. Stat and lstat return information about file name; fstat returns information
about the file associated with fortran logical unit lunit. The order and meaning of the information returned in array statb is as
described for the structure stat under stat(2). The ``spare'' values are not included.
The value of either function will be zero if successful; an error code otherwise.
FILES
/usr/lib/libU77.a
SEE ALSO
stat(2), access(3F), perror(3F), time(3F)
BUGS
Pathnames can be no longer than MAXPATHLEN as defined in <sys/param.h>.
4.2 Berkeley Distribution May 15, 1985 STAT(3F)