Imported tab->space correction by redhat
[infodrom/manpages-de] / man3 / opendir.3
1 .\" Copyright (C) 1993 David Metcalfe (david@prism.demon.co.uk)
2 .\"
3 .\" Permission is granted to make and distribute verbatim copies of this
4 .\" manual provided the copyright notice and this permission notice are
5 .\" preserved on all copies.
6 .\"
7 .\" Permission is granted to copy and distribute modified versions of this
8 .\" manual under the conditions for verbatim copying, provided that the
9 .\" entire resulting derived work is distributed under the terms of a
10 .\" permission notice identical to this one
11 .\" 
12 .\" Since the Linux kernel and libraries are constantly changing, this
13 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
14 .\" responsibility for errors or omissions, or for damages resulting from
15 .\" the use of the information contained herein.  The author(s) may not
16 .\" have taken the same level of care in the production of this manual,
17 .\" which is licensed free of charge, as they might when working
18 .\" professionally.
19 .\" 
20 .\" Formatted or processed versions of this manual, if unaccompanied by
21 .\" the source, must acknowledge the copyright and authors of this work.
22 .\"
23 .\" References consulted:
24 .\"     Linux libc source code
25 .\"     Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
26 .\"     386BSD man pages
27 .\" Modified Sat Jul 24 18:46:01 1993 by Rik Faith <faith@cs.unc.edu>
28 .\" Modified 11 June 1995 by Andries Brouwer <aeb@cwi.nl>
29 .\" Translated into german 02 June 1996 by Markus Kaufmann
30 .\"                                        <markus.kaufmann@gmx.de>
31 .\"
32 .TH OPENDIR 3  "2. Juni 1996" "" "Bibliotheksfunktionen"
33 .SH BEZEICHNUNG
34 opendir \- öffnet eine Verzeichnisdatei
35 .SH ÜBERSICHT
36 .nf
37 .B #include <sys/types.h>
38 .sp
39 .B #include <dirent.h>
40 .sp
41 .BI "DIR *opendir(const char *" name );
42 .fi
43 .SH BESCHREIBUNG
44 Die 
45 .BR opendir() \-Funktion
46 öffnet die Verzeichnisdatei des Verzeichnisses
47 .I name
48 und liefert einen Zeiger auf den ersten Eintrag des Verzeichnisses zurück.
49 .SH "RÜCKGABEWERT"
50 Die 
51 .BR opendir() \-Funktion
52 liefert einen Zeiger auf die Verzeichnisdatei zurück. 
53 Trat ein Fehler auf,
54 so wird ein NULL-Zeiger zurückgeliefert.
55 .SH "FEHLER"
56 .TP
57 .B EACESS
58 Zugriff verweigert.
59 .TP
60 .B EMFILE
61 Der Prozess benutzt zu viele Dateideskriptoren.
62 .TP
63 .B ENFILE
64 Auf diesem System sind zurzeit zu viele Dateien gleichzeitig geöffnet.
65 .TP
66 .B ENOENT
67 Verzeichnis existiert nicht, oder
68 .I name
69 ist ein leerer String.
70 .TP
71 .B ENOMEM
72 Zuwenig Speicher um den Vorgang zu beenden.
73 .TP
74 .B ENOTDIR
75 .I name
76 ist kein Verzeichnis.
77 .SH "KONFORM ZU"
78 SVID 3, POSIX, BSD 4.3
79 .SH "SIEHE AUCH"
80 .BR open (2),
81 .BR readdir (3),
82 .BR closedir (3),
83 .BR rewinddir (3),
84 .BR seekdir (3),
85 .BR telldir (3),
86 .BR scandir (3).