Rechercher une page de manuel
opendir
Langue: pt
Version: 11 June 1995 (ubuntu - 01/11/07)
Section: 3 (Bibliothèques de fonctions)
NAME
opendir - open a directorySYNOPSIS
#include <sys/types.h> #include <dirent.h> DIR *opendir(const char *name);
DESCRIPTION
The opendir() function opens a directory stream corresponding to the directory name, and returns a pointer to the directory stream. The stream is positioned at the first entry in the directory.RETURN VALUE
The opendir() function returns a pointer to the directory stream or NULL if an error occurred.ERRORS
- EACCES
- Permission denied.
- EMFILE
- Too many file descriptors in use by process.
- ENFILE
- Too many files are currently open in the system.
- ENOENT
- Directory does not exist, or name is an empty string.
- ENOMEM
- Insufficient memory to complete the operation.
- ENOTDIR
- name is not a directory.
CONFORMING TO
SVID 3, POSIX, BSD 4.3SEE ALSO
open(2), readdir(3), closedir(3), rewinddir(3), seekdir(3), telldir(3), scandir(3)
MultideskOS ne gère pas la mémoire comme tout le monde... Il n'y a pas
de swapping ni de fragmentation, car tri automatique des variables dans
la mémoire par ordre alphabétique etc..
-- Jayce - Ça me la coupe --
de swapping ni de fragmentation, car tri automatique des variables dans
la mémoire par ordre alphabétique etc..
-- Jayce - Ça me la coupe --
Contenus ©2006-2008 Benjamin Poulain
Design ©2006-2008 Maxime Vantorre