Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unix.stat/Unix.lstat => file status, not file statistics, see: man 2 stat #3878

Closed
vicuna opened this issue Nov 19, 2005 · 0 comments
Closed

Comments

@vicuna
Copy link

vicuna commented Nov 19, 2005

Original bug ID: 3878
Reporter: anonymous
Status: closed (set by @damiendoligez on 2005-11-22T11:59:27Z)
Resolution: fixed
Priority: normal
Severity: text
Category: documentation

Bug description

STAT(2) BSD System Calls Manual STAT(2)

NAME
stat, lstat, fstat - get file status

SYNOPSIS
#include <sys/types.h>
#include <sys/stat.h>

 int
 stat(const char *path, struct stat *sb);

 int
 lstat(const char *path, struct stat *sb);

 int
 fstat(int fd, struct stat *sb);

DESCRIPTION
The stat() function obtains information about the file pointed to by
path. Read, write or execute permission of the named file is not
required, but all directories listed in the path name leading to the file
must be searchable.

[...]

Additional information

fixed DD 2005-11-22

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant