f92d3a6855539a753e3d261e99c3dd00c6bbfb44
[gnulib.git] / doc / posix-functions / stat.texi
1 @node stat
2 @section @code{stat}
3 @findex stat
4
5 POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/stat.html}
6
7 Gnulib module: stat
8
9 Portability problems fixed by Gnulib:
10 @itemize
11 @item
12 On platforms where @code{off_t} is a 32-bit type, @code{stat} may not correctly
13 report the size of files or block devices larger than 2 GB.
14 (Cf. @code{AC_SYS_LARGEFILE}.)
15 @item
16 On some platforms, @code{stat("link-to-file/",buf)} succeeds instead
17 of failing with @code{ENOTDIR}.
18 FreeBSD 7.2, AIX 7.1, Solaris 9.
19 @item
20 On some platforms, @code{stat(".",buf)} and @code{stat("./",buf)} give
21 different results:
22 mingw, MSVC 9.
23 @end itemize
24
25 Portability problems not fixed by Gnulib:
26 @itemize
27 @item
28 @xref{sys/stat.h}, for general portability problems with @code{struct stat}.
29 @item
30 Cygwin's @code{stat} function sometimes sets @code{errno} to @code{EACCES} when
31 @code{ENOENT} would be more appropriate.
32 @item
33 Because of the definition of @code{struct stat}, it is not possible to
34 portably replace @code{stat} via an object-like macro.  Therefore,
35 expressions such as @code{(islnk ? lstat : stat) (name, buf)} are not
36 portable, and should instead be written @code{islnk ? lstat (name,
37 buf) : stat (name, buf)}.
38 @end itemize