5. Files and Directories Manager¶
5.1. Introduction¶
The files and directories manager is …
The directives provided by the files and directories manager are:
opendir - Open a Directory
readdir - Reads a directory
rewinddir - Resets the
readdir()
pointerscandir - Scan a directory for matching entries
telldir - Return current location in directory stream
closedir - Ends directory read operation
getdents - Get directory entries
chdir - Changes the current working directory
fchdir - Changes the current working directory
getcwd - Gets current working directory
open - Opens a file
creat - Create a new file or rewrite an existing one
umask - Sets a file creation mask
link - Creates a link to a file
symlink - Creates a symbolic link to a file
readlink - Obtain the name of the link destination
mkdir - Makes a directory
mkfifo - Makes a FIFO special file
unlink - Removes a directory entry
rmdir - Delete a directory
rename - Renames a file
stat - Gets information about a file.
fstat - Gets file status
lstat - Gets file status
access - Check permissions for a file.
chmod - Changes file mode
fchmod - Changes permissions of a file
chown - Changes the owner and/ or group of a file
utime - Change access and/or modification times of an inode
ftruncate - Truncate a file to a specified length
truncate - Truncate a file to a specified length
pathconf - Gets configuration values for files
fpathconf - Get configuration values for files
mknod - Create a directory
5.2. Background¶
5.2.1. Path Name Evaluation¶
A pathname is a string that consists of no more than PATH_MAX
bytes,
including the terminating null character. A pathname has an optional beginning
slash, followed by zero or more filenames separated by slashes. If the
pathname refers to a directory, it may also have one or more trailing
slashes. Multiple successive slahes are considered to be the same as one slash.
POSIX allows a pathname that begins with precisely two successive slashes to be interpreted in an implementation-defined manner. RTEMS does not currently recognize this as a special condition. Any number of successive slashes is treated the same as a single slash. POSIX requires that an implementation treat more than two leading slashes as a single slash.
5.3. Operations¶
There is currently no text in this section.
5.4. Directives¶
This section details the files and directories manager’s directives. A subsection is dedicated to each of this manager’s directives and describes the calling sequence, related constants, usage, and status codes.
5.4.1. opendir - Open a Directory¶
CALLING SEQUENCE:
#include <sys/types.h>
#include <dirent.h>
int opendir(
const char *dirname
);
STATUS CODES:
|
Search permission was denied on a component of the path prefix of
|
|
Too many file descriptors in use by process |
|
Too many files are currently open in the system. |
|
Directory does not exist, or |
|
Insufficient memory to complete the operation. |
|
|
DESCRIPTION:
This routine opens a directory stream corresponding to the
directory specified by the dirname
argument. The
directory stream is positioned at the first entry.
NOTES:
The routine is implemented in Cygnus newlib.
5.4.2. readdir - Reads a directory¶
CALLING SEQUENCE:
#include <sys/types.h>
#include <dirent.h>
int readdir(
DIR *dirp
);
STATUS CODES:
|
Invalid file descriptor |
DESCRIPTION:
The readdir()
function returns a pointer to a structure dirent
representing the next directory entry from the directory stream pointed to by
dirp
. On end-of-file, NULL
is returned.
The readdir()
function may (or may not) return entries for .
or ..
Your program should tolerate reading dot and dot-dot but not require them.
The data pointed to be readdir()
may be overwritten by another call to
readdir()
for the same directory stream. It will not be overwritten by a
call for another directory.
NOTES:
If ptr
is not a pointer returned by malloc()
, calloc()
, or
realloc()
or has been deallocated with free()
or realloc()
, the
results are not portable and are probably disastrous.
The routine is implemented in Cygnus newlib.
5.4.3. rewinddir - Resets the readdir() pointer¶
CALLING SEQUENCE:
#include <sys/types.h>
#include <dirent.h>
void rewinddir(
DIR *dirp
);
STATUS CODES:
No value is returned.
DESCRIPTION:
The rewinddir()
function resets the position associated with the directory
stream pointed to by dirp
. It also causes the directory stream to refer to
the current state of the directory.
NOTES:
NONE
If dirp
is not a pointer by opendir()
, the results are undefined.
The routine is implemented in Cygnus newlib.
5.4.4. scandir - Scan a directory for matching entries¶
CALLING SEQUENCE:
#include <dirent.h>
int scandir(
const char *dir,
struct dirent ***namelist,
int (*select)(const struct dirent *),
int (*compar)(const struct dirent **, const struct dirent **)
);
STATUS CODES:
|
Insufficient memory to complete the operation. |
DESCRIPTION:
The scandir()
function scans the directory dir
, calling select()
on
each directory entry. Entries for which select()
returns non-zero are
stored in strings allocated via malloc()
, sorted using qsort()
with the
comparison function compar()
, and collected in array namelist
which is
allocated via malloc()
. If select
is NULL
, all entries are
selected.
NOTES:
The routine is implemented in Cygnus newlib.
5.4.5. telldir - Return current location in directory stream¶
CALLING SEQUENCE:
#include <dirent.h>
off_t telldir(
DIR *dir
);
STATUS CODES:
|
Invalid directory stream descriptor |
DESCRIPTION:
The telldir()
function returns the current location associated with the
directory stream dir
.
NOTES:
The routine is implemented in Cygnus newlib.
5.4.6. closedir - Ends directory read operation¶
CALLING SEQUENCE:
#include <sys/types.h>
#include <dirent.h>
int closedir(
DIR *dirp
);
STATUS CODES:
|
Invalid file descriptor |
DESCRIPTION:
The directory stream associated with dirp
is closed. The value in dirp
may not be usable after a call to closedir()
.
NOTES:
NONE
The argument to closedir()
must be a pointer returned by opendir()
. If
it is not, the results are not portable and most likely unpleasant.
The routine is implemented in Cygnus newlib.
5.4.7. chdir - Changes the current working directory¶
CALLING SEQUENCE:
#include <unistd.h>
int chdir(
const char *path
);
STATUS CODES:
On error, this routine returns -1 and sets errno
to one of the following:
|
Search permission is denied for a directory in a file’s path prefix. |
|
Length of a filename string exceeds |
|
A file or directory does not exist. |
|
A component of the specified pathname was not a directory when directory was expected. |
DESCRIPTION:
The chdir()
function causes the directory named by path
to become the
current working directory; that is, the starting point for searches of
pathnames not beginning with a slash.
If chdir()
detects an error, the current working directory is not changed.
NOTES:
NONE
5.4.8. fchdir - Changes the current working directory¶
CALLING SEQUENCE:
#include <unistd.h>
int fchdir(
int fd
);
STATUS CODES:
On error, this routine returns -1 and sets errno
to one of the following:
|
Search permission is denied for a directory in a file’s path prefix. |
|
Length of a filename string exceeds |
|
A file or directory does not exist. |
|
A component of the specified pathname was not a directory when directory was expected. |
DESCRIPTION:
The fchdir()
function causes the directory named by fd
to become the
current working directory; that is, the starting point for searches of
pathnames not beginning with a slash.
If fchdir()
detects an error, the current working directory is not changed.
NOTES:
NONE
5.4.9. getcwd - Gets current working directory¶
CALLING SEQUENCE:
#include <unistd.h>
int getcwd( void );
STATUS CODES:
|
Invalid argument |
|
Result is too large |
|
Search permission is denied for a directory in a file’s path prefix. |
DESCRIPTION:
The getcwd()
function copies the absolute pathname of the current working
directory to the character array pointed to by buf
. The size
argument
is the number of bytes available in buf
NOTES:
There is no way to determine the maximum string length that fetcwd()
may
need to return. Applications should tolerate getting ERANGE
and allocate a
larger buffer.
It is possible for getcwd()
to return EACCES if, say, login
puts the
process into a directory without read access.
The 1988 standard uses int
instead of size_t
for the second parameter.
5.4.10. open - Opens a file¶
CALLING SEQUENCE:
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
int open(
const char *path,
int oflag,
mode_t mode
);
STATUS CODES:
|
Search permission is denied for a directory in a file’s path prefix. |
|
The named file already exists. |
|
Function was interrupted by a signal. |
|
Attempt to open a directory for writing or to rename a file to be a directory. |
|
Too many file descriptors are in use by this process. |
|
Length of a filename string exceeds |
|
Too many files are currently open in the system. |
|
A file or directory does not exist. |
|
No space left on disk. |
|
A component of the specified pathname was not a directory when a directory was expected. |
|
No such device. This error may also occur when a device is not ready, for example, a tape drive is off-line. |
|
Read-only file system. |
DESCRIPTION:
The open
function establishes a connection between a file and a file
descriptor. The file descriptor is a small integer that is used by I/O
functions to reference the file. The path
argument points to the pathname
for the file.
The oflag
argument is the bitwise inclusive OR of the values of symbolic
constants. The programmer must specify exactly one of the following three
symbols:
|
Open for reading only. |
|
Open for writing only. |
|
Open for reading and writing. |
Any combination of the following symbols may also be used.
|
Set the file offset to the end-of-file prior to each write. |
|
If the file does not exist, allow it to be created. This flag indicates
that the |
|
This flag may be used only if |
|
Do not assign controlling terminal. |
|
Do no wait for the device or file to be ready or available. After the file
is open, the |
|
This flag should be used only on ordinary files opened for writing. It causes the file to be tuncated to zero length.. |
Upon successful completion, open
returns a non-negative file descriptor.
NOTES:
NONE
5.4.11. creat - Create a new file or rewrite an existing one¶
CALLING SEQUENCE:
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
int creat(
const char *path,
mode_t mode
);
STATUS CODES:
|
|
|
|
|
|
|
|
|
The requested access to the file is not allowed, or one of the directories
in |
|
|
|
A directory component in |
|
A component used as a directory in |
|
The process alreadyh has the maximum number of files open. |
|
The limit on the total number of files open on the system has been reached. |
|
Insufficient kernel memory was available. |
|
|
DESCRIPTION:
creat
attempts to create a file and return a file descriptor for use in
read, write, etc.
NOTES:
NONE
The routine is implemented in Cygnus newlib.
5.4.12. umask - Sets a file creation mask.¶
CALLING SEQUENCE:
#include <sys/types.h>
#include <sys/stat.h>
mode_t umask(
mode_t cmask
);
STATUS CODES:
DESCRIPTION:
The umask()
function sets the process file creation mask to cmask
. The
file creation mask is used during open()
, creat()
, mkdir()
,
mkfifo()
calls to turn off permission bits in the mode
argument. Bit
positions that are set in cmask
are cleared in the mode of the created
file.
NOTES:
NONE
The cmask
argument should have only permission bits set. All other bits
should be zero.
In a system which supports multiple processes, the file creation mask is
inherited across fork()
and exec()
calls. This makes it possible to
alter the default permission bits of created files. RTEMS does not support
multiple processes so this behavior is not possible.
5.4.13. link - Creates a link to a file¶
CALLING SEQUENCE:
#include <unistd.h>
int link(
const char *existing,
const char *new
);
STATUS CODES:
|
Search permission is denied for a directory in a file’s path prefix |
|
The named file already exists. |
|
The number of links would exceed |
|
Length of a filename string exceeds |
|
A file or directory does not exist. |
|
No space left on disk. |
|
A component of the specified pathname was not a directory when a directory was expected. |
|
Operation is not permitted. Process does not have the appropriate priviledges or permissions to perform the requested operations. |
|
Read-only file system. |
|
Attempt to link a file to another file system. |
DESCRIPTION:
The link()
function atomically creates a new link for an existing file and
increments the link count for the file.
If the link()
function fails, no directories are modified.
The existing
argument should not be a directory.
The caller may (or may not) need permission to access the existing file.
NOTES:
NONE
5.4.14. symlink - Creates a symbolic link to a file¶
CALLING SEQUENCE:
#include <unistd.h>
int symlink(
const char *topath,
const char *frompath
);
STATUS CODES:
|
Search permission is denied for a directory in a file’s path prefix |
|
The named file already exists. |
|
Length of a filename string exceeds |
|
A file or directory does not exist. |
|
No space left on disk. |
|
A component of the specified pathname was not a directory when a directory was expected. |
|
Operation is not permitted. Process does not have the appropriate priviledges or permissions to perform the requested operations. |
|
Read-only file system. |
DESCRIPTION:
The symlink()
function creates a symbolic link from the frombath to the
topath. The symbolic link will be interpreted at run-time.
If the symlink()
function fails, no directories are modified.
The caller may (or may not) need permission to access the existing file.
NOTES:
NONE
5.4.15. readlink - Obtain the name of a symbolic link destination¶
CALLING SEQUENCE:
#include <unistd.h>
int readlink(
const char *path,
char *buf,
size_t bufsize
);
STATUS CODES:
|
Search permission is denied for a directory in a file’s path prefix |
|
Length of a filename string exceeds |
|
A file or directory does not exist. |
|
A component of the prefix pathname was not a directory when a directory was expected. |
|
Too many symbolic links were encountered in the pathname. |
|
The pathname does not refer to a symbolic link |
|
An invalid pointer was passed into the |
DESCRIPTION:
The readlink()
function places the symbolic link destination into buf
argument and returns the number of characters copied.
If the symbolic link destination is longer than bufsize characters the name will be truncated.
NOTES:
NONE
5.4.16. mkdir - Makes a directory¶
CALLING SEQUENCE:
#include <sys/types.h>
#include <sys/stat.h>
int mkdir(
const char *path,
mode_t mode
);
STATUS CODES:
|
Search permission is denied for a directory in a file’s path prefix |
|
The name file already exist. |
|
The number of links would exceed |
|
Length of a filename string exceeds |
|
A file or directory does not exist. |
|
No space left on disk. |
|
A component of the specified pathname was not a directory when a directory was expected. |
|
Read-only file system. |
DESCRIPTION:
The mkdir()
function creates a new diectory named path
. The permission
bits (modified by the file creation mask) are set from mode
. The owner and
group IDs for the directory are set from the effective user ID and group ID.
The new directory may (or may not) contain entries for .
and ..
but is
otherwise empty.
NOTES:
NONE
5.4.17. mkfifo - Makes a FIFO special file¶
CALLING SEQUENCE:
#include <sys/types.h>
#include <sys/stat.h>
int mkfifo(
const char *path,
mode_t mode
);
STATUS CODES:
|
Search permission is denied for a directory in a file’s path prefix |
|
The named file already exists. |
|
A file or directory does not exist. |
|
No space left on disk. |
|
A component of the specified |
|
Read-only file system. |
DESCRIPTION:
The mkfifo()
function creates a new FIFO special file named path
. The
permission bits (modified by the file creation mask) are set from mode
. The
owner and group IDs for the FIFO are set from the efective user ID and
group ID.
NOTES:
NONE
5.4.18. unlink - Removes a directory entry¶
CALLING SEQUENCE:
#include <unistd.h>
int unlink(
const char path
);
STATUS CODES:
|
Search permission is denied for a directory in a file’s path prefix |
|
The directory is in use. |
|
Length of a filename string exceeds |
|
A file or directory does not exist. |
|
A component of the specified |
|
Operation is not permitted. Process does not have the appropriate priviledges or permissions to perform the requested operations. |
|
Read-only file system. |
DESCRIPTION:
The unlink
function removes the link named by path
and decrements the
link count of the file referenced by the link. When the link count goes to zero
and no process has the file open, the space occupied by the file is freed and
the file is no longer accessible.
NOTES:
NONE
5.4.19. rmdir - Delete a directory¶
CALLING SEQUENCE:
#include <unistd.h>
int rmdir(
const char *pathname
);
STATUS CODES:
|
The filesystem containing |
|
|
|
Write access to the directory containing |
|
The directory containing |
|
|
|
A dirctory component in |
|
|
|
|
|
|
|
|
|
Insufficient kernel memory was available |
|
|
|
|
DESCRIPTION:
rmdir
deletes a directory, which must be empty
NOTES:
NONE
5.4.20. rename - Renames a file¶
CALLING SEQUENCE:
#include <unistd.h>
int rename(
const char *old,
const char *new
);
STATUS CODES:
|
Search permission is denied for a directory in a file’s path prefix. |
|
The directory is in use. |
|
The named file already exists. |
|
Invalid argument. |
|
Attempt to open a directory for writing or to rename a file to be a directory. |
|
The number of links would exceed |
|
Length of a filename string exceeds |
|
A file or directory does no exist. |
|
No space left on disk. |
|
A component of the specified pathname was not a directory when a directory was expected. |
|
Attempt to delete or rename a non-empty directory. |
|
Read-only file system |
|
Attempt to link a file to another file system. |
DESCRIPTION:
The rename()
function causes the file known bo old
to now be known as
new
.
Ordinary files may be renamed to ordinary files, and directories may be renamed
to directories; however, files cannot be converted using rename()
. The
new
pathname may not contain a path prefix of old
.
NOTES:
If a file already exists by the name new
, it is removed. The rename()
function is atomic. If the rename()
detects an error, no files are
removed. This guarantees that the rename("x", "x")
does not remove x
.
You may not rename dot or dot-dot.
The routine is implemented in Cygnus newlib using link()
and unlink()
.
5.4.21. stat - Gets information about a file¶
CALLING SEQUENCE:
#include <sys/types.h>
#include <sys/stat.h>
int stat(
const char *path,
struct stat *buf
);
STATUS CODES:
|
Search permission is denied for a directory in a file’s path prefix. |
|
Invalid file descriptor. |
|
Length of a filename string exceeds |
|
A file or directory does not exist. |
|
A component of the specified pathname was not a directory when a directory was expected. |
DESCRIPTION:
The path
argument points to a pathname for a file. Read, write, or execute
permission for the file is not required, but all directories listed in path
must be searchable. The stat()
function obtains information about the named
file and writes it to the area pointed to by buf
.
NOTES:
NONE
5.4.22. fstat - Gets file status¶
CALLING SEQUENCE:
#include <sys/types.h>
#include <sys/stat.h>
int fstat(
int fildes,
struct stat *buf
);
STATUS CODES:
|
Invalid file descriptor |
DESCRIPTION:
The fstat()
function obtains information about the file associated with
fildes
and writes it to the area pointed to by the buf
argument.
NOTES:
If the filesystem object referred to by fildes
is a link, then the
information returned in buf
refers to the destination of that link. This
is in contrast to lstat()
which does not follow the link.
5.4.23. lstat - Gets file status¶
CALLING SEQUENCE:
#include <sys/types.h>
#include <sys/stat.h>
int lstat(
int fildes,
struct stat *buf
);
STATUS CODES:
|
Invalid file descriptor |
DESCRIPTION:
The lstat()
function obtains information about the file associated with
fildes
and writes it to the area pointed to by the buf
argument.
NOTES:
If the filesystem object referred to by fildes
is a link, then the
information returned in buf
refers to the link itself. This is in contrast
to fstat()
which follows the link.
The lstat()
routine is defined by BSD 4.3 and SVR4 and not included in
POSIX 1003.1b-1996.
5.4.24. access - Check permissions for a file¶
CALLING SEQUENCE:
#include <unistd.h>
int access(
const char *pathname,
int mode
);
STATUS CODES:
|
The requested access would be denied, either to the file itself or one of
the directories in |
|
|
|
|
|
|
|
A directory component in |
|
A component used as a directory in |
|
Insufficient kernel memory was available. |
DESCRIPTION:
Access
checks whether the process would be allowed to read, write or test
for existence of the file (or other file system object) whose name is
pathname
. If pathname
is a symbolic link permissions of the file
referred by this symbolic link are tested.
Mode
is a mask consisting of one or more of R_OK
, W_OK
, X_OK
and F_OK
.
NOTES:
NONE
5.4.25. chmod - Changes file mode.¶
CALLING SEQUENCE:
#include <sys/types.h>
#include <sys/stat.h>
int chmod(
const char *path,
mode_t mode
);
STATUS CODES:
|
Search permission is denied for a directory in a file’s path prefix |
|
Length of a filename string exceeds |
|
A file or directory does not exist. |
|
A component of the specified pathname was not a directory when a directory was expected. |
|
Operation is not permitted. Process does not have the appropriate priviledges or permissions to perform the requested operations. |
|
Read-only file system. |
DESCRIPTION:
Set the file permission bits, the set user ID bit, and the set group ID bit for
the file named by path
to mode
. If the effective user ID does not match
the owner of the file and the calling process does not have the appropriate
privileges, chmod()
returns -1 and sets errno
to EPERM
.
NOTES:
NONE
5.4.26. fchmod - Changes permissions of a file¶
CALLING SEQUENCE:
#include <sys/types.h>
#include <sys/stat.h>
int fchmod(
int fildes,
mode_t mode
);
STATUS CODES:
|
Search permission is denied for a directory in a file’s path prefix. |
|
The descriptor is not valid. |
|
|
|
A low-level I/o error occurred while modifying the inode. |
|
|
|
Length of a filename string exceeds |
|
A file or directory does no exist. |
|
Insufficient kernel memory was avaliable. |
|
A component of the specified pathname was not a directory when a directory was expected. |
|
The effective UID does not match the owner of the file, and is not zero |
|
Read-only file system |
DESCRIPTION:
The mode of the file given by path
or referenced by filedes
is changed.
NOTES:
NONE
5.4.27. getdents - Get directory entries¶
CALLING SEQUENCE:
#include <unistd.h>
#include <linux/dirent.h>
#include <linux/unistd.h>
long getdents(
int dd_fd,
char *dd_buf,
int dd_len
);
STATUS CODES:
A successful call to getdents
returns th the number of bytes read. On end
of directory, 0 is returned. When an error occurs, -1 is returned, and
errno
is set appropriately.
|
Invalid file descriptor |
|
Argument points outside the calling process’s address space. |
|
Result buffer is too small. |
|
No such directory. |
|
File descriptor does not refer to a directory. |
DESCRIPTION:
getdents
reads several dirent
structures from the directory pointed by
fd
into the memory area pointed to by dirp
. The parameter count
is
the size of the memory area.
NOTES:
NONE
5.4.28. chown - Changes the owner and/or group of a file.¶
CALLING SEQUENCE:
#include <sys/types.h>
#include <unistd.h>
int chown(
const char *path,
uid_t owner,
gid_t group
);
STATUS CODES:
|
Search permission is denied for a directory in a file’s path prefix |
|
Invalid argument |
|
Length of a filename string exceeds |
|
A file or directory does not exist. |
|
A component of the specified pathname was not a directory when a directory was expected. |
|
Operation is not permitted. Process does not have the appropriate priviledges or permissions to perform the requested operations. |
|
Read-only file system. |
DESCRIPTION:
The user ID and group ID of the file named by path
are set to owner
and
path
, respectively.
For regular files, the set group ID (S_ISGID
) and set user ID (S_ISUID
)
bits are cleared.
Some systems consider it a security violation to allow the owner of a file to
be changed, If users are billed for disk space usage, loaning a file to another
user could result in incorrect billing. The chown()
function may be
restricted to privileged users for some or all files. The group ID can still be
changed to one of the supplementary group IDs.
NOTES:
This function may be restricted for some file. The pathconf
function can be
used to test the _PC_CHOWN_RESTRICTED
flag.
5.4.29. utime - Change access and/or modification times of an inode¶
CALLING SEQUENCE:
#include <sys/types.h>
int utime(
const char *filename,
struct utimbuf *buf
);
STATUS CODES:
|
Permission to write the file is denied |
|
|
DESCRIPTION:
Utime
changes the access and modification times of the inode specified by
filename
to the actime
and modtime
fields of buf
respectively. If buf
is NULL
, then the access and modification times of the
file are set to the current time.
NOTES:
NONE
5.4.30. ftruncate - truncate a file to a specified length¶
CALLING SEQUENCE:
#include <unistd.h>
int ftrunctate(
int fd,
size_t length
);
STATUS CODES:
|
A component of the path prefix is not a directory. |
|
The pathname contains a character with the high-order bit set. |
|
The length of the specified pathname exceeds |
|
The named file does not exist. |
|
The named file is not writable by the user. |
|
Search permission is denied for a component of the path prefix. |
|
Too many symbolic links were encountered in translating the pathname |
|
The named file is a directory. |
|
The named file resides on a read-only file system |
|
The file is a pure procedure (shared text) file that is being executed |
|
An I/O error occurred updating the inode. |
|
|
|
The |
DESCRIPTION:
truncate()
causes the file named by path
or referenced by fd
to be
truncated to at most length
bytes in size. If the file previously was
larger than this size, the extra data is lost. With ftruncate()
, the file
must be open for writing.
NOTES:
NONE
5.4.31. truncate - truncate a file to a specified length¶
CALLING SEQUENCE:
#include <unistd.h>
int trunctate(
const char *path,
size_t length
);
STATUS CODES:
|
A component of the path prefix is not a directory. |
|
The pathname contains a character with the high-order bit set. |
|
The length of the specified pathname exceeds |
|
The named file does not exist. |
|
The named file is not writable by the user. |
|
Search permission is denied for a component of the path prefix. |
|
Too many symbolic links were encountered in translating the pathname |
|
The named file is a directory. |
|
The named file resides on a read-only file system |
|
The file is a pure procedure (shared text) file that is being executed |
|
An I/O error occurred updating the inode. |
|
|
|
The |
DESCRIPTION:
truncate()
causes the file named by path
or referenced by``fd`` to be
truncated to at most length
bytes in size. If the file previously was
larger than this size, the extra data is lost. With ftruncate()
, the file
must be open for writing.
NOTES:
NONE
5.4.32. pathconf - Gets configuration values for files¶
CALLING SEQUENCE:
#include <unistd.h>
int pathconf(
const char *path,
int name
);
STATUS CODES:
|
Invalid argument |
|
Permission to write the file is denied |
|
Length of a filename string exceeds |
|
A file or directory does not exist |
|
A component of the specified |
DESCRIPTION:
pathconf()
gets a value for the configuration option name
for the open
file descriptor filedes
.
The possible values for name
are:
|
Returns the maximum number of links to the file. If |
|
Returns the maximum length of a formatted input line, where |
|
Returns the maximum length of an input line, where |
|
Returns the maximum length of a filename in the directory |
|
returns the maximum length of a relative pathname when |
|
returns the size of the pipe buffer, where |
|
Returns nonzero if the |
NOTES:
Files with name lengths longer than the value returned for name
equal
_PC_NAME_MAX
may exist in the given directory.
5.4.33. fpathconf - Gets configuration values for files¶
CALLING SEQUENCE:
#include <unistd.h>
int fpathconf(
int filedes,
int name
);
STATUS CODES:
|
Invalid argument |
|
Permission to write the file is denied |
|
Length of a filename string exceeds |
|
A file or directory does not exist |
|
A component of the specified |
DESCRIPTION:
pathconf()
gets a value for the configuration option name
for the open
file descriptor filedes
.
The possible values for name are:
|
Returns the maximum number of links to the file. If |
|
returns the maximum length of a formatted input line, where |
|
Returns the maximum length of an input line, where |
|
Returns the maximum length of a filename in the directory |
|
Returns the maximum length of a relative pathname when |
|
Returns the size of the pipe buffer, where |
|
Returns nonzero if the |
NOTES:
NONE
5.4.34. mknod - create a directory¶
CALLING SEQUENCE:
#include <unistd.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
long mknod(
const char *pathname,
mode_t mode,
dev_t dev
);
STATUS CODES:
mknod
returns zero on success, or -1 if an error occurred (in which case,
errno is set appropriately).
|
|
|
A directory component in |
|
A component used in the directory |
|
Insufficient kernel memory was available |
|
|
|
|
|
The device containing |
DESCRIPTION:
mknod
attempts to create a filesystem node (file, device special file or
named pipe) named pathname
, specified by mode
and dev
.
mode
specifies both the permissions to use and the type of node to be created.
It should be a combination (using bitwise OR) of one of the file types listed below and the permissions for the new node.
The permissions are modified by the process’s umask
in the usual way: the
permissions of the created node are (mode & ~umask)
.
The file type should be one of S_IFREG
, S_IFCHR
, S_IFBLK
and
S_IFIFO
to specify a normal file (which will be created empty), character
special file, block special file or FIFO (named pipe), respectively, or zero,
which will create a normal file.
If the file type is S_IFCHR
or S_IFBLK
then dev
specifies the major
and minor numbers of the newly created device special file; otherwise it is
ignored.
The newly created node will be owned by the effective uid of the process. If the directory containing the node has the set group id bit set, or if the filesystem is mounted with BSD group semantics, the new node will inherit the group ownership from its parent directory; otherwise it will be owned by the effective gid of the process.
NOTES:
NONE