File: chdir.2

package info (click to toggle)
manpages-fr 0.8-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 5,760 kB
  • ctags: 4
  • sloc: makefile: 57; sh: 8
file content (117 lines) | stat: -rw-r--r-- 3,558 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
.\" Hey Emacs! This file is -*- nroff -*- source.
.\"
.\" Copyright (c) 1992 Drew Eckhardt (drew@cs.colorado.edu), March 28, 1992
.\"
.\" Permission is granted to make and distribute verbatim copies of this
.\" manual provided the copyright notice and this permission notice are
.\" preserved on all copies.
.\"
.\" Permission is granted to copy and distribute modified versions of this
.\" manual under the conditions for verbatim copying, provided that the
.\" entire resulting derived work is distributed under the terms of a
.\" permission notice identical to this one
.\" 
.\" Since the Linux kernel and libraries are constantly changing, this
.\" manual page may be incorrect or out-of-date.  The author(s) assume no
.\" responsibility for errors or omissions, or for damages resulting from
.\" the use of the information contained herein.  The author(s) may not
.\" have taken the same level of care in the production of this manual,
.\" which is licensed free of charge, as they might when working
.\" professionally.
.\" 
.\" Formatted or processed versions of this manual, if unaccompanied by
.\" the source, must acknowledge the copyright and authors of this work.
.\"
.\" Modified by Michael Haardt (u31b3hs@pool.informatik.rwth-aachen.de)
.\" Modified Wed Jul 21 22:10:52 1993 by Rik Faith (faith@cs.unc.edu)
.\" Modified 15 April 1995 by Michael Chastain (mec@shell.portal.com):
.\"   Added 'fchdir'.
.\"   Fix bugs in error section.
.\"
.\" Traduction 9/10/1996 par Christophe Blaess (ccb@club-internet.fr)
.\" mj 10/12/97 (LDP man-pages 1.18)
.TH CHDIR 2 "10 Dcembre 1997" "Linux 2.0.30" "Manuel du programmeur Linux"
.SH NOM 
chdir, fchdir \- Changer le rpertoire courant.
.SH SYNOPSIS
.B #include <unistd.h>
.sp
.BI "int chdir(const char *" path );
.br
.BI "int fchdir(int " fd ");"
.SH DESCRIPTION
.B chdir
remplace le rpertoire courant par celui indiqu dans le chemin
.IR path .
.PP
.B fchdir
est identique 
.BR chdir ,
sauf que le rpertoire cible est fourni sous forme de descripteur
de fichier.
.SH "VALEUR RENVOYE" 
.BR chdir " et " fchdir
renvoient 0 s'ils russissent, ou \-1 s'ils chouent, auquel cas
.I errno
contient le code d'erreur.
.SH ERREURS
Suivant le type de systme de fichiers, plusieurs erreurs peuvent
tre renvoyes, les plus courantes pour \fBchdir\fP sont les suivantes :
.TP 0.8i
.B EFAULT
.I path
pointe en dehors de l'espace d'adressage accessible.
.TP
.B ENAMETOOLONG
.I path
est trop long.
.TP
.B ENOENT
Le fichier n'existe pas.
.TP
.B ENOMEM
Pas assez de mmoire pour le noyau.
.TP
.B ENOTDIR
Un lment du chemin d'accs n'est pas un rpertoire.
.TP
.B EACCES
L'accs n'est pas autoris sur un lment du chemin.
.TP
.B ELOOP
.I path
contient des rfrences circulaires ( travers un lien symbolique)
.B EIO
Erreur gnrique d'entre/sortie.
.PP
Les erreurs courantes pour
.B fchdir
sont :
.TP 0.8i
.B EBADF
.I fd
n'est pas un descripteur de fichier valide.
.TP
.B EACCES
Le rpertoire ouvert sur \fIfd\fP n'autorise pas le parcours.
.SH "CONFORMIT"
L'appel systme
.B chdir
est compatible avec SVr4, SVID, POSIX, X/OPEN, et 4.4BSD.
SVr4 dcrit les conditions d'erreur supplmentaires EINTR, ENOLINK,
et EMULTIHOP mais n'a pas d'erreur ENOMEM.
POSIX.1 ne contient pas d'erreur ENOMEM ni ELOOP.
X/OPEN ne decrit pas les erreurs EFAULT, ENOMEM ni EIO.

L'appel systme
.B fchdir
est compatible avec SVr4, 4.4BSD et X/OPEN.
SVr4 ajoute les conditions d'erreur EIO, EINTR, et ENOLINK.
X/OPEN ajoute EINTR et EIO.

.SH "VOIR AUSSI"
.BR getcwd (3),
.BR chroot (2)

.SH TRADUCTION
Christophe Blaess, 1997.