lpc4/lib/
lpc4/lib/doc/efun/
lpc4/lib/doc/lfun/
lpc4/lib/doc/operators/
lpc4/lib/doc/simul_efuns/
lpc4/lib/doc/types/
lpc4/lib/etc/
lpc4/lib/include/
lpc4/lib/include/arpa/
lpc4/lib/obj/d/
lpc4/lib/save/
lpc4/lib/secure/
lpc4/lib/std/
lpc4/lib/std/living/
NAME
	file_stat - stat a file

SYNTAX
	mixed *file_stat(string file);
	or
	mixed *file_stat(string file,1);

DESCRIPTION
	Returns an array with the following data:
	({
	   mode,  /* protection bits */
           size,  /* size in bytes, -2 for dirs, -3 for links */
           atime, /* access time */
	   mtime  /* modification time */
	   ctime  /* status change time */
        })
        See your unix (or whatever) manual for more info.
	Returns 0 if the file doesn't exist.

	If you give 1 as second argument to this function, it does not follow
	symbolic links.

SEE ALSO
	file_size, file_length