blob: 826e9fadcc08d547f5ee7b019365c70fc87b31fc [file] [log] [blame]
Fred Drake295da241998-08-10 19:42:37 +00001\section{\module{os} ---
Fred Drake8ee679f2001-07-14 02:50:55 +00002 Miscellaneous operating system interfaces}
Fred Drakeb91e9341998-07-23 17:59:49 +00003
Fred Drakeec6baaf1999-04-21 18:13:31 +00004\declaremodule{standard}{os}
Fred Drake8ee679f2001-07-14 02:50:55 +00005\modulesynopsis{Miscellaneous operating system interfaces.}
Fred Drakeb91e9341998-07-23 17:59:49 +00006
Fred Drakec4f15af1998-03-10 03:17:26 +00007
Guido van Rossum5fdeeea1994-01-02 01:22:07 +00008This module provides a more portable way of using operating system
Fred Drake8ee679f2001-07-14 02:50:55 +00009dependent functionality than importing a operating system dependent
10built-in module like \refmodule{posix} or \module{nt}.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000011
Fred Drake8ee679f2001-07-14 02:50:55 +000012This module searches for an operating system dependent built-in module like
Fred Drake2f979011999-06-11 18:28:37 +000013\module{mac} or \refmodule{posix} and exports the same functions and data
Fred Drake8ee679f2001-07-14 02:50:55 +000014as found there. The design of all Python's built-in operating system dependent
Fred Drake215fe2f1999-02-02 19:02:35 +000015modules is such that as long as the same functionality is available,
Fred Drake907e76b2001-07-06 20:30:11 +000016it uses the same interface; for example, the function
Fred Drakeec6baaf1999-04-21 18:13:31 +000017\code{os.stat(\var{path})} returns stat information about \var{path} in
18the same format (which happens to have originated with the
19\POSIX{} interface).
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000020
Fred Drake8ee679f2001-07-14 02:50:55 +000021Extensions peculiar to a particular operating system are also
22available through the \module{os} module, but using them is of course a
23threat to portability!
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000024
Fred Drakec4f15af1998-03-10 03:17:26 +000025Note that after the first time \module{os} is imported, there is
26\emph{no} performance penalty in using functions from \module{os}
Fred Drake8ee679f2001-07-14 02:50:55 +000027instead of directly from the operating system dependent built-in module,
28so there should be \emph{no} reason not to use \module{os}!
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000029
Fred Drake215fe2f1999-02-02 19:02:35 +000030
Fred Drake859dc531999-07-01 13:54:40 +000031% Frank Stajano <fstajano@uk.research.att.com> complained that it
32% wasn't clear that the entries described in the subsections were all
33% available at the module level (most uses of subsections are
34% different); I think this is only a problem for the HTML version,
35% where the relationship may not be as clear.
36%
37\ifhtml
38The \module{os} module contains many functions and data values.
39The items below and in the following sub-sections are all available
40directly from the \module{os} module.
41\fi
42
43
Fred Drake215fe2f1999-02-02 19:02:35 +000044\begin{excdesc}{error}
Fred Drake907e76b2001-07-06 20:30:11 +000045This exception is raised when a function returns a system-related
46error (not for illegal argument types or other incidental errors).
47This is also known as the built-in exception \exception{OSError}. The
Fred Drake215fe2f1999-02-02 19:02:35 +000048accompanying value is a pair containing the numeric error code from
49\cdata{errno} and the corresponding string, as would be printed by the
50C function \cfunction{perror()}. See the module
51\refmodule{errno}\refbimodindex{errno}, which contains names for the
52error codes defined by the underlying operating system.
53
54When exceptions are classes, this exception carries two attributes,
55\member{errno} and \member{strerror}. The first holds the value of
56the C \cdata{errno} variable, and the latter holds the corresponding
57error message from \cfunction{strerror()}. For exceptions that
Fred Drake907e76b2001-07-06 20:30:11 +000058involve a file system path (such as \function{chdir()} or
Fred Drake215fe2f1999-02-02 19:02:35 +000059\function{unlink()}), the exception instance will contain a third
60attribute, \member{filename}, which is the file name passed to the
61function.
Fred Drake215fe2f1999-02-02 19:02:35 +000062\end{excdesc}
Guido van Rossum470be141995-03-17 16:07:09 +000063
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000064\begin{datadesc}{name}
Fred Drake8ee679f2001-07-14 02:50:55 +000065The name of the operating system dependent module imported. The
Fred Drake6995bb62001-11-29 20:48:44 +000066following names have currently been registered: \code{'posix'},
Martin v. Löwis36a4d8c2002-10-10 18:24:54 +000067\code{'nt'}, \code{'mac'}, \code{'os2'}, \code{'ce'},
Fred Drake6995bb62001-11-29 20:48:44 +000068\code{'java'}, \code{'riscos'}.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000069\end{datadesc}
70
71\begin{datadesc}{path}
Fred Drake8ee679f2001-07-14 02:50:55 +000072The corresponding operating system dependent standard module for pathname
Fred Drake907e76b2001-07-06 20:30:11 +000073operations, such as \module{posixpath} or \module{macpath}. Thus,
74given the proper imports, \code{os.path.split(\var{file})} is
75equivalent to but more portable than
76\code{posixpath.split(\var{file})}. Note that this is also an
77importable module: it may be imported directly as
Fred Drake215fe2f1999-02-02 19:02:35 +000078\refmodule{os.path}.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000079\end{datadesc}
80
Fred Drake215fe2f1999-02-02 19:02:35 +000081
82
83\subsection{Process Parameters \label{os-procinfo}}
84
85These functions and data items provide information and operate on the
86current process and user.
87
Fred Drake215fe2f1999-02-02 19:02:35 +000088\begin{datadesc}{environ}
Fred Drake0e1de8b1999-04-29 12:57:32 +000089A mapping object representing the string environment. For example,
90\code{environ['HOME']} is the pathname of your home directory (on some
91platforms), and is equivalent to \code{getenv("HOME")} in C.
Fred Drake215fe2f1999-02-02 19:02:35 +000092
Tim Petersd6ef1932004-07-26 00:42:41 +000093This mapping is captured the first time the \module{os} module is
94imported, typically during Python startup as part of processing
95\file{site.py}. Changes to the environment made after this time are
96not reflected in \code{os.environ}, except for changes made by modifying
97\code{os.environ} directly.
98
Fred Drake215fe2f1999-02-02 19:02:35 +000099If the platform supports the \function{putenv()} function, this
100mapping may be used to modify the environment as well as query the
101environment. \function{putenv()} will be called automatically when
Tim Petersd6ef1932004-07-26 00:42:41 +0000102the mapping is modified.
103\note{Calling \function{putenv()} directly does not change
104\code{os.environ}, so it's better to modify \code{os.environ}.}
105\note{On some platforms, including FreeBSD and Mac OS X, setting
106\code{environ} may cause memory leaks. Refer to the system documentation
107for \cfunction{putenv()}.}
Fred Drake215fe2f1999-02-02 19:02:35 +0000108
Georg Brandl837a9762005-06-25 18:44:49 +0000109If \function{putenv()} is not provided, a modified copy of this mapping
110may be passed to the appropriate process-creation functions to cause
111child processes to use a modified environment.
112
113If the platform supports the \function{unsetenv()} function, you can
114delete items in this mapping to unset environment variables.
115\function{unsetenv()} will be called automatically when an item is
116deleted from \code{os.environ}.
117
Fred Drake215fe2f1999-02-02 19:02:35 +0000118\end{datadesc}
119
Fred Drake6db897c1999-07-12 16:49:30 +0000120\begin{funcdescni}{chdir}{path}
Fred Drakee19a5bc2002-04-15 19:46:40 +0000121\funclineni{fchdir}{fd}
Fred Drake6db897c1999-07-12 16:49:30 +0000122\funclineni{getcwd}{}
123These functions are described in ``Files and Directories'' (section
124\ref{os-file-dir}).
125\end{funcdescni}
Fred Drake215fe2f1999-02-02 19:02:35 +0000126
Fred Drake18f7a451999-12-09 22:11:43 +0000127\begin{funcdesc}{ctermid}{}
128Return the filename corresponding to the controlling terminal of the
129process.
Fred Drakec37b65e2001-11-28 07:26:15 +0000130Availability: \UNIX.
Fred Drake18f7a451999-12-09 22:11:43 +0000131\end{funcdesc}
132
Fred Drake215fe2f1999-02-02 19:02:35 +0000133\begin{funcdesc}{getegid}{}
Fred Draked3e66782002-04-26 20:59:40 +0000134Return the effective group id of the current process. This
135corresponds to the `set id' bit on the file being executed in the
136current process.
Fred Drakec37b65e2001-11-28 07:26:15 +0000137Availability: \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +0000138\end{funcdesc}
139
140\begin{funcdesc}{geteuid}{}
Fred Drake6b330ba81999-05-25 13:42:26 +0000141\index{user!effective id}
Fred Drake215fe2f1999-02-02 19:02:35 +0000142Return the current process' effective user id.
Fred Drakec37b65e2001-11-28 07:26:15 +0000143Availability: \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +0000144\end{funcdesc}
145
146\begin{funcdesc}{getgid}{}
Fred Drake6b330ba81999-05-25 13:42:26 +0000147\index{process!group}
Fred Draked3e66782002-04-26 20:59:40 +0000148Return the real group id of the current process.
Fred Drakec37b65e2001-11-28 07:26:15 +0000149Availability: \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +0000150\end{funcdesc}
151
Fred Drake88f6ca21999-12-15 19:39:04 +0000152\begin{funcdesc}{getgroups}{}
153Return list of supplemental group ids associated with the current
154process.
Fred Drakec37b65e2001-11-28 07:26:15 +0000155Availability: \UNIX.
Fred Drake88f6ca21999-12-15 19:39:04 +0000156\end{funcdesc}
157
158\begin{funcdesc}{getlogin}{}
Jeremy Hylton403e3512002-07-24 15:32:25 +0000159Return the name of the user logged in on the controlling terminal of
160the process. For most purposes, it is more useful to use the
Andrew M. Kuchling4b373642003-02-03 15:36:26 +0000161environment variable \envvar{LOGNAME} to find out who the user is,
162or \code{pwd.getpwuid(os.getuid())[0]} to get the login name
163of the currently effective user ID.
Fred Drakec37b65e2001-11-28 07:26:15 +0000164Availability: \UNIX.
Fred Drake88f6ca21999-12-15 19:39:04 +0000165\end{funcdesc}
166
Martin v. Löwis606edc12002-06-13 21:09:11 +0000167\begin{funcdesc}{getpgid}{pid}
168Return the process group id of the process with process id \var{pid}.
169If \var{pid} is 0, the process group id of the current process is
170returned. Availability: \UNIX.
Neal Norwitzcc5c6942002-06-13 21:19:25 +0000171\versionadded{2.3}
Martin v. Löwis606edc12002-06-13 21:09:11 +0000172\end{funcdesc}
173
Fred Drake215fe2f1999-02-02 19:02:35 +0000174\begin{funcdesc}{getpgrp}{}
175\index{process!group}
Fred Draked3e66782002-04-26 20:59:40 +0000176Return the id of the current process group.
Fred Drakec37b65e2001-11-28 07:26:15 +0000177Availability: \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +0000178\end{funcdesc}
179
180\begin{funcdesc}{getpid}{}
181\index{process!id}
182Return the current process id.
Fred Drakec37b65e2001-11-28 07:26:15 +0000183Availability: \UNIX, Windows.
Fred Drake215fe2f1999-02-02 19:02:35 +0000184\end{funcdesc}
185
186\begin{funcdesc}{getppid}{}
187\index{process!id of parent}
188Return the parent's process id.
Fred Drakec37b65e2001-11-28 07:26:15 +0000189Availability: \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +0000190\end{funcdesc}
191
192\begin{funcdesc}{getuid}{}
Fred Drake6b330ba81999-05-25 13:42:26 +0000193\index{user!id}
Fred Drake215fe2f1999-02-02 19:02:35 +0000194Return the current process' user id.
Fred Drakec37b65e2001-11-28 07:26:15 +0000195Availability: \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +0000196\end{funcdesc}
197
Fred Drake81e142b2001-05-31 20:27:46 +0000198\begin{funcdesc}{getenv}{varname\optional{, value}}
199Return the value of the environment variable \var{varname} if it
200exists, or \var{value} if it doesn't. \var{value} defaults to
201\code{None}.
Fred Drakec37b65e2001-11-28 07:26:15 +0000202Availability: most flavors of \UNIX, Windows.
Fred Drake81e142b2001-05-31 20:27:46 +0000203\end{funcdesc}
204
Fred Drake215fe2f1999-02-02 19:02:35 +0000205\begin{funcdesc}{putenv}{varname, value}
206\index{environment variables!setting}
207Set the environment variable named \var{varname} to the string
208\var{value}. Such changes to the environment affect subprocesses
209started with \function{os.system()}, \function{popen()} or
210\function{fork()} and \function{execv()}.
Fred Drakec37b65e2001-11-28 07:26:15 +0000211Availability: most flavors of \UNIX, Windows.
Fred Drake215fe2f1999-02-02 19:02:35 +0000212
Neal Norwitz2b09bc42003-02-07 02:27:36 +0000213\note{On some platforms, including FreeBSD and Mac OS X,
214setting \code{environ} may cause memory leaks.
215Refer to the system documentation for putenv.}
216
Fred Drake215fe2f1999-02-02 19:02:35 +0000217When \function{putenv()} is
218supported, assignments to items in \code{os.environ} are automatically
219translated into corresponding calls to \function{putenv()}; however,
220calls to \function{putenv()} don't update \code{os.environ}, so it is
Tim Petersab034fa2002-02-01 11:27:43 +0000221actually preferable to assign to items of \code{os.environ}.
Fred Drake215fe2f1999-02-02 19:02:35 +0000222\end{funcdesc}
223
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +0000224\begin{funcdesc}{setegid}{egid}
225Set the current process's effective group id.
Fred Drakec37b65e2001-11-28 07:26:15 +0000226Availability: \UNIX.
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +0000227\end{funcdesc}
228
229\begin{funcdesc}{seteuid}{euid}
230Set the current process's effective user id.
Fred Drakec37b65e2001-11-28 07:26:15 +0000231Availability: \UNIX.
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +0000232\end{funcdesc}
233
Fred Drake215fe2f1999-02-02 19:02:35 +0000234\begin{funcdesc}{setgid}{gid}
235Set the current process' group id.
Fred Drakec37b65e2001-11-28 07:26:15 +0000236Availability: \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +0000237\end{funcdesc}
238
Martin v. Löwis61c5edf2001-10-18 04:06:00 +0000239\begin{funcdesc}{setgroups}{groups}
Martin v. Löwisc4051332001-10-18 14:07:12 +0000240Set the list of supplemental group ids associated with the current
241process to \var{groups}. \var{groups} must be a sequence, and each
242element must be an integer identifying a group. This operation is
243typical available only to the superuser.
Fred Drakec37b65e2001-11-28 07:26:15 +0000244Availability: \UNIX.
Martin v. Löwis61c5edf2001-10-18 04:06:00 +0000245\versionadded{2.2}
246\end{funcdesc}
247
Fred Drake215fe2f1999-02-02 19:02:35 +0000248\begin{funcdesc}{setpgrp}{}
249Calls the system call \cfunction{setpgrp()} or \cfunction{setpgrp(0,
2500)} depending on which version is implemented (if any). See the
251\UNIX{} manual for the semantics.
Fred Drakec37b65e2001-11-28 07:26:15 +0000252Availability: \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +0000253\end{funcdesc}
254
Fred Draked3e66782002-04-26 20:59:40 +0000255\begin{funcdesc}{setpgid}{pid, pgrp} Calls the system call
256\cfunction{setpgid()} to set the process group id of the process with
257id \var{pid} to the process group with id \var{pgrp}. See the \UNIX{}
258manual for the semantics.
Fred Drakec37b65e2001-11-28 07:26:15 +0000259Availability: \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +0000260\end{funcdesc}
261
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +0000262\begin{funcdesc}{setreuid}{ruid, euid}
263Set the current process's real and effective user ids.
Fred Drakec37b65e2001-11-28 07:26:15 +0000264Availability: \UNIX.
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +0000265\end{funcdesc}
266
267\begin{funcdesc}{setregid}{rgid, egid}
268Set the current process's real and effective group ids.
Fred Drakec37b65e2001-11-28 07:26:15 +0000269Availability: \UNIX.
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +0000270\end{funcdesc}
271
Martin v. Löwis49ee14d2003-11-10 06:35:36 +0000272\begin{funcdesc}{getsid}{pid}
273Calls the system call \cfunction{getsid()}. See the \UNIX{} manual
274for the semantics.
Martin v. Löwis75aa4db2003-11-10 06:46:15 +0000275Availability: \UNIX. \versionadded{2.4}
Martin v. Löwis49ee14d2003-11-10 06:35:36 +0000276\end{funcdesc}
277
Fred Drake215fe2f1999-02-02 19:02:35 +0000278\begin{funcdesc}{setsid}{}
279Calls the system call \cfunction{setsid()}. See the \UNIX{} manual
280for the semantics.
Fred Drakec37b65e2001-11-28 07:26:15 +0000281Availability: \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +0000282\end{funcdesc}
283
284\begin{funcdesc}{setuid}{uid}
Fred Drake6b330ba81999-05-25 13:42:26 +0000285\index{user!id, setting}
Fred Drake215fe2f1999-02-02 19:02:35 +0000286Set the current process' user id.
Fred Drakec37b65e2001-11-28 07:26:15 +0000287Availability: \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +0000288\end{funcdesc}
289
Raymond Hettinger9b4dab42003-12-31 18:37:28 +0000290% placed in this section since it relates to errno.... a little weak
Fred Drake215fe2f1999-02-02 19:02:35 +0000291\begin{funcdesc}{strerror}{code}
292Return the error message corresponding to the error code in
293\var{code}.
Fred Drakec37b65e2001-11-28 07:26:15 +0000294Availability: \UNIX, Windows.
Fred Drake215fe2f1999-02-02 19:02:35 +0000295\end{funcdesc}
296
297\begin{funcdesc}{umask}{mask}
298Set the current numeric umask and returns the previous umask.
Fred Drakec37b65e2001-11-28 07:26:15 +0000299Availability: \UNIX, Windows.
Fred Drake215fe2f1999-02-02 19:02:35 +0000300\end{funcdesc}
301
302\begin{funcdesc}{uname}{}
303Return a 5-tuple containing information identifying the current
304operating system. The tuple contains 5 strings:
305\code{(\var{sysname}, \var{nodename}, \var{release}, \var{version},
306\var{machine})}. Some systems truncate the nodename to 8
307characters or to the leading component; a better way to get the
308hostname is \function{socket.gethostname()}
309\withsubitem{(in module socket)}{\ttindex{gethostname()}}
310or even
311\withsubitem{(in module socket)}{\ttindex{gethostbyaddr()}}
312\code{socket.gethostbyaddr(socket.gethostname())}.
Fred Drakec37b65e2001-11-28 07:26:15 +0000313Availability: recent flavors of \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +0000314\end{funcdesc}
315
Georg Brandl837a9762005-06-25 18:44:49 +0000316\begin{funcdesc}{unsetenv}{varname}
317\index{environment variables!deleting}
318Unset (delete) the environment variable named \var{varname}. Such
319changes to the environment affect subprocesses started with
320\function{os.system()}, \function{popen()} or \function{fork()} and
321\function{execv()}. Availability: most flavors of \UNIX, Windows.
Fred Drake215fe2f1999-02-02 19:02:35 +0000322
Georg Brandl837a9762005-06-25 18:44:49 +0000323When \function{unsetenv()} is
324supported, deletion of items in \code{os.environ} is automatically
325translated into a corresponding call to \function{unsetenv()}; however,
326calls to \function{unsetenv()} don't update \code{os.environ}, so it is
327actually preferable to delete items of \code{os.environ}.
328\end{funcdesc}
Fred Drake215fe2f1999-02-02 19:02:35 +0000329
330\subsection{File Object Creation \label{os-newstreams}}
331
332These functions create new file objects.
333
334
335\begin{funcdesc}{fdopen}{fd\optional{, mode\optional{, bufsize}}}
336Return an open file object connected to the file descriptor \var{fd}.
Fred Drake8c9fc001999-08-05 13:41:31 +0000337\index{I/O control!buffering}
Fred Drake215fe2f1999-02-02 19:02:35 +0000338The \var{mode} and \var{bufsize} arguments have the same meaning as
339the corresponding arguments to the built-in \function{open()}
340function.
Fred Drakec37b65e2001-11-28 07:26:15 +0000341Availability: Macintosh, \UNIX, Windows.
Thomas Heller5b470e02002-11-07 16:33:44 +0000342
343\versionchanged[When specified, the \var{mode} argument must now start
Fred Drakeb5f41de2002-11-07 17:13:03 +0000344 with one of the letters \character{r}, \character{w}, or \character{a},
345 otherwise a \exception{ValueError} is raised]{2.3}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000346\versionchanged[On \UNIX, when the \var{mode} argument starts with
347 \character{a}, the \var{O_APPEND} flag is set on the file descriptor
348 (which the \cfunction{fdopen()} implementation already does on most
349 platforms)]{2.5}
Fred Drake215fe2f1999-02-02 19:02:35 +0000350\end{funcdesc}
351
352\begin{funcdesc}{popen}{command\optional{, mode\optional{, bufsize}}}
353Open a pipe to or from \var{command}. The return value is an open
354file object connected to the pipe, which can be read or written
355depending on whether \var{mode} is \code{'r'} (default) or \code{'w'}.
356The \var{bufsize} argument has the same meaning as the corresponding
357argument to the built-in \function{open()} function. The exit status of
358the command (encoded in the format specified for \function{wait()}) is
359available as the return value of the \method{close()} method of the file
360object, except that when the exit status is zero (termination without
Fred Drake1319e3e2000-10-03 17:14:27 +0000361errors), \code{None} is returned.
Brett Cannon7706c2d2005-02-13 22:50:04 +0000362Availability: Macintosh, \UNIX, Windows.
Fred Drakec71c23e2000-10-04 13:57:27 +0000363
Guido van Rossum360e4b82007-05-14 22:51:27 +0000364\deprecated{2.6}{This function is obsolete. Use the
365 \module{subprocess} module.}
Thomas Wouters89f507f2006-12-13 04:49:30 +0000366
Fred Drakec71c23e2000-10-04 13:57:27 +0000367\versionchanged[This function worked unreliably under Windows in
368 earlier versions of Python. This was due to the use of the
369 \cfunction{_popen()} function from the libraries provided with
370 Windows. Newer versions of Python do not use the broken
371 implementation from the Windows libraries]{2.0}
Fred Drake215fe2f1999-02-02 19:02:35 +0000372\end{funcdesc}
373
Fred Drake18f7a451999-12-09 22:11:43 +0000374\begin{funcdesc}{tmpfile}{}
Guido van Rossumdb9198a2002-06-10 19:23:22 +0000375Return a new file object opened in update mode (\samp{w+b}). The file
Fred Drake18f7a451999-12-09 22:11:43 +0000376has no directory entries associated with it and will be automatically
377deleted once there are no file descriptors for the file.
Brett Cannon7706c2d2005-02-13 22:50:04 +0000378Availability: Macintosh, \UNIX, Windows.
Fred Drake18f7a451999-12-09 22:11:43 +0000379\end{funcdesc}
Fred Drake215fe2f1999-02-02 19:02:35 +0000380
Fred Drake8a9db992000-09-28 20:27:51 +0000381
Fred Drake215fe2f1999-02-02 19:02:35 +0000382\subsection{File Descriptor Operations \label{os-fd-ops}}
383
Andrew M. Kuchlinge1a385a2005-08-31 13:50:17 +0000384These functions operate on I/O streams referenced using file
385descriptors.
386
387File descriptors are small integers corresponding to a file that has
388been opened by the current process. For example, standard input is
389usually file descriptor 0, standard output is 1, and standard error is
3902. Further files opened by a process will then be assigned 3, 4, 5,
391and so forth. The name ``file descriptor'' is slightly deceptive; on
392{\UNIX} platforms, sockets and pipes are also referenced by file descriptors.
Fred Drake215fe2f1999-02-02 19:02:35 +0000393
394
395\begin{funcdesc}{close}{fd}
396Close file descriptor \var{fd}.
Fred Drakec37b65e2001-11-28 07:26:15 +0000397Availability: Macintosh, \UNIX, Windows.
Fred Drake215fe2f1999-02-02 19:02:35 +0000398
Fred Drake0ed66342004-04-16 15:20:01 +0000399\begin{notice}
400This function is intended for low-level I/O and must be applied
Fred Drake215fe2f1999-02-02 19:02:35 +0000401to a file descriptor as returned by \function{open()} or
402\function{pipe()}. To close a ``file object'' returned by the
403built-in function \function{open()} or by \function{popen()} or
404\function{fdopen()}, use its \method{close()} method.
Fred Drake0ed66342004-04-16 15:20:01 +0000405\end{notice}
Fred Drake215fe2f1999-02-02 19:02:35 +0000406\end{funcdesc}
407
408\begin{funcdesc}{dup}{fd}
409Return a duplicate of file descriptor \var{fd}.
Fred Drakec37b65e2001-11-28 07:26:15 +0000410Availability: Macintosh, \UNIX, Windows.
Fred Drake215fe2f1999-02-02 19:02:35 +0000411\end{funcdesc}
412
413\begin{funcdesc}{dup2}{fd, fd2}
414Duplicate file descriptor \var{fd} to \var{fd2}, closing the latter
415first if necessary.
Brett Cannon7706c2d2005-02-13 22:50:04 +0000416Availability: Macintosh, \UNIX, Windows.
Fred Drake215fe2f1999-02-02 19:02:35 +0000417\end{funcdesc}
418
Raymond Hettinger3cfdc342002-08-07 15:48:17 +0000419\begin{funcdesc}{fdatasync}{fd}
420Force write of file with filedescriptor \var{fd} to disk.
421Does not force update of metadata.
422Availability: \UNIX.
423\end{funcdesc}
424
Fred Drake88f6ca21999-12-15 19:39:04 +0000425\begin{funcdesc}{fpathconf}{fd, name}
Thomas Woutersf8316632000-07-16 19:01:10 +0000426Return system configuration information relevant to an open file.
Fred Drake88f6ca21999-12-15 19:39:04 +0000427\var{name} specifies the configuration value to retrieve; it may be a
428string which is the name of a defined system value; these names are
Raymond Hettingerb67449d2003-09-08 18:52:18 +0000429specified in a number of standards (\POSIX.1, \UNIX{} 95, \UNIX{} 98, and
Fred Drake88f6ca21999-12-15 19:39:04 +0000430others). Some platforms define additional names as well. The names
431known to the host operating system are given in the
432\code{pathconf_names} dictionary. For configuration variables not
433included in that mapping, passing an integer for \var{name} is also
434accepted.
Brett Cannon7706c2d2005-02-13 22:50:04 +0000435Availability: Macintosh, \UNIX.
Fred Drake88f6ca21999-12-15 19:39:04 +0000436
437If \var{name} is a string and is not known, \exception{ValueError} is
438raised. If a specific value for \var{name} is not supported by the
439host system, even if it is included in \code{pathconf_names}, an
440\exception{OSError} is raised with \constant{errno.EINVAL} for the
441error number.
442\end{funcdesc}
443
Fred Drake215fe2f1999-02-02 19:02:35 +0000444\begin{funcdesc}{fstat}{fd}
445Return status for file descriptor \var{fd}, like \function{stat()}.
Brett Cannon7706c2d2005-02-13 22:50:04 +0000446Availability: Macintosh, \UNIX, Windows.
Fred Drake215fe2f1999-02-02 19:02:35 +0000447\end{funcdesc}
448
449\begin{funcdesc}{fstatvfs}{fd}
450Return information about the filesystem containing the file associated
451with file descriptor \var{fd}, like \function{statvfs()}.
Fred Drakec37b65e2001-11-28 07:26:15 +0000452Availability: \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +0000453\end{funcdesc}
454
Raymond Hettinger3cfdc342002-08-07 15:48:17 +0000455\begin{funcdesc}{fsync}{fd}
Tim Peters2d1c8462003-04-23 19:47:14 +0000456Force write of file with filedescriptor \var{fd} to disk. On \UNIX,
457this calls the native \cfunction{fsync()} function; on Windows, the
458MS \cfunction{_commit()} function.
Tim Peters11b23062003-04-23 02:39:17 +0000459
Tim Peters2d1c8462003-04-23 19:47:14 +0000460If you're starting with a Python file object \var{f}, first do
Raymond Hettinger52136a82003-05-10 03:35:37 +0000461\code{\var{f}.flush()}, and then do \code{os.fsync(\var{f}.fileno())},
Tim Peters11b23062003-04-23 02:39:17 +0000462to ensure that all internal buffers associated with \var{f} are written
463to disk.
Brett Cannon7706c2d2005-02-13 22:50:04 +0000464Availability: Macintosh, \UNIX, and Windows starting in 2.2.3.
Raymond Hettinger3cfdc342002-08-07 15:48:17 +0000465\end{funcdesc}
466
Fred Drake215fe2f1999-02-02 19:02:35 +0000467\begin{funcdesc}{ftruncate}{fd, length}
Tim Petersab034fa2002-02-01 11:27:43 +0000468Truncate the file corresponding to file descriptor \var{fd},
Fred Drake215fe2f1999-02-02 19:02:35 +0000469so that it is at most \var{length} bytes in size.
Brett Cannon7706c2d2005-02-13 22:50:04 +0000470Availability: Macintosh, \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +0000471\end{funcdesc}
472
Skip Montanarod3725212000-07-19 17:30:58 +0000473\begin{funcdesc}{isatty}{fd}
Fred Drake106c1a02002-04-23 15:58:02 +0000474Return \code{True} if the file descriptor \var{fd} is open and
475connected to a tty(-like) device, else \code{False}.
Brett Cannon7706c2d2005-02-13 22:50:04 +0000476Availability: Macintosh, \UNIX.
Skip Montanarod3725212000-07-19 17:30:58 +0000477\end{funcdesc}
478
Fred Drake215fe2f1999-02-02 19:02:35 +0000479\begin{funcdesc}{lseek}{fd, pos, how}
480Set the current position of file descriptor \var{fd} to position
481\var{pos}, modified by \var{how}: \code{0} to set the position
482relative to the beginning of the file; \code{1} to set it relative to
483the current position; \code{2} to set it relative to the end of the
484file.
Fred Drakec37b65e2001-11-28 07:26:15 +0000485Availability: Macintosh, \UNIX, Windows.
Fred Drake215fe2f1999-02-02 19:02:35 +0000486\end{funcdesc}
487
488\begin{funcdesc}{open}{file, flags\optional{, mode}}
489Open the file \var{file} and set various flags according to
490\var{flags} and possibly its mode according to \var{mode}.
491The default \var{mode} is \code{0777} (octal), and the current umask
492value is first masked out. Return the file descriptor for the newly
493opened file.
Fred Drakec37b65e2001-11-28 07:26:15 +0000494Availability: Macintosh, \UNIX, Windows.
Fred Drake215fe2f1999-02-02 19:02:35 +0000495
496For a description of the flag and mode values, see the C run-time
497documentation; flag constants (like \constant{O_RDONLY} and
498\constant{O_WRONLY}) are defined in this module too (see below).
499
Fred Drake0ed66342004-04-16 15:20:01 +0000500\begin{notice}
501This function is intended for low-level I/O. For normal usage,
Fred Drake215fe2f1999-02-02 19:02:35 +0000502use the built-in function \function{open()}, which returns a ``file
503object'' with \method{read()} and \method{write()} methods (and many
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000504more). To wrap a file descriptor in a ``file object'', use
505\function{fdopen()}.
Fred Drake0ed66342004-04-16 15:20:01 +0000506\end{notice}
Fred Drake215fe2f1999-02-02 19:02:35 +0000507\end{funcdesc}
508
Fred Drakec82634c2000-06-28 17:27:48 +0000509\begin{funcdesc}{openpty}{}
510Open a new pseudo-terminal pair. Return a pair of file descriptors
511\code{(\var{master}, \var{slave})} for the pty and the tty,
512respectively. For a (slightly) more portable approach, use the
513\refmodule{pty}\refstmodindex{pty} module.
Brett Cannon7706c2d2005-02-13 22:50:04 +0000514Availability: Macintosh, Some flavors of \UNIX.
Fred Drakec82634c2000-06-28 17:27:48 +0000515\end{funcdesc}
516
Fred Drake215fe2f1999-02-02 19:02:35 +0000517\begin{funcdesc}{pipe}{}
518Create a pipe. Return a pair of file descriptors \code{(\var{r},
519\var{w})} usable for reading and writing, respectively.
Brett Cannon7706c2d2005-02-13 22:50:04 +0000520Availability: Macintosh, \UNIX, Windows.
Fred Drake215fe2f1999-02-02 19:02:35 +0000521\end{funcdesc}
522
523\begin{funcdesc}{read}{fd, n}
524Read at most \var{n} bytes from file descriptor \var{fd}.
Fred Drakea65375c2002-05-01 03:31:42 +0000525Return a string containing the bytes read. If the end of the file
526referred to by \var{fd} has been reached, an empty string is
527returned.
Fred Drakec37b65e2001-11-28 07:26:15 +0000528Availability: Macintosh, \UNIX, Windows.
Fred Drake215fe2f1999-02-02 19:02:35 +0000529
Fred Drake0ed66342004-04-16 15:20:01 +0000530\begin{notice}
531This function is intended for low-level I/O and must be applied
Fred Drake215fe2f1999-02-02 19:02:35 +0000532to a file descriptor as returned by \function{open()} or
533\function{pipe()}. To read a ``file object'' returned by the
534built-in function \function{open()} or by \function{popen()} or
535\function{fdopen()}, or \code{sys.stdin}, use its
536\method{read()} or \method{readline()} methods.
Fred Drake0ed66342004-04-16 15:20:01 +0000537\end{notice}
Fred Drake215fe2f1999-02-02 19:02:35 +0000538\end{funcdesc}
539
540\begin{funcdesc}{tcgetpgrp}{fd}
541Return the process group associated with the terminal given by
542\var{fd} (an open file descriptor as returned by \function{open()}).
Brett Cannon7706c2d2005-02-13 22:50:04 +0000543Availability: Macintosh, \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +0000544\end{funcdesc}
545
546\begin{funcdesc}{tcsetpgrp}{fd, pg}
547Set the process group associated with the terminal given by
548\var{fd} (an open file descriptor as returned by \function{open()})
549to \var{pg}.
Brett Cannon7706c2d2005-02-13 22:50:04 +0000550Availability: Macintosh, \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +0000551\end{funcdesc}
552
553\begin{funcdesc}{ttyname}{fd}
554Return a string which specifies the terminal device associated with
555file-descriptor \var{fd}. If \var{fd} is not associated with a terminal
556device, an exception is raised.
Brett Cannon7706c2d2005-02-13 22:50:04 +0000557Availability:Macintosh, \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +0000558\end{funcdesc}
559
560\begin{funcdesc}{write}{fd, str}
561Write the string \var{str} to file descriptor \var{fd}.
562Return the number of bytes actually written.
Fred Drakec37b65e2001-11-28 07:26:15 +0000563Availability: Macintosh, \UNIX, Windows.
Fred Drake215fe2f1999-02-02 19:02:35 +0000564
Fred Drake0ed66342004-04-16 15:20:01 +0000565\begin{notice}
566This function is intended for low-level I/O and must be applied
Fred Drake215fe2f1999-02-02 19:02:35 +0000567to a file descriptor as returned by \function{open()} or
568\function{pipe()}. To write a ``file object'' returned by the
569built-in function \function{open()} or by \function{popen()} or
570\function{fdopen()}, or \code{sys.stdout} or \code{sys.stderr}, use
571its \method{write()} method.
Fred Drake0ed66342004-04-16 15:20:01 +0000572\end{notice}
Fred Drake215fe2f1999-02-02 19:02:35 +0000573\end{funcdesc}
574
575
576The following data items are available for use in constructing the
Skip Montanaro5ff14922005-05-16 02:42:22 +0000577\var{flags} parameter to the \function{open()} function. Some items will
578not be available on all platforms. For descriptions of their availability
579and use, consult \manpage{open}{2}.
Fred Drake215fe2f1999-02-02 19:02:35 +0000580
581\begin{datadesc}{O_RDONLY}
582\dataline{O_WRONLY}
583\dataline{O_RDWR}
Fred Drake215fe2f1999-02-02 19:02:35 +0000584\dataline{O_APPEND}
Fred Drake215fe2f1999-02-02 19:02:35 +0000585\dataline{O_CREAT}
586\dataline{O_EXCL}
587\dataline{O_TRUNC}
588Options for the \var{flag} argument to the \function{open()} function.
589These can be bit-wise OR'd together.
Fred Drakec37b65e2001-11-28 07:26:15 +0000590Availability: Macintosh, \UNIX, Windows.
Tim Petersde833212004-07-15 05:46:37 +0000591\end{datadesc}
592
Neal Norwitz76aa2ef2004-07-19 01:39:54 +0000593\begin{datadesc}{O_DSYNC}
Tim Petersde833212004-07-15 05:46:37 +0000594\dataline{O_RSYNC}
595\dataline{O_SYNC}
596\dataline{O_NDELAY}
597\dataline{O_NONBLOCK}
598\dataline{O_NOCTTY}
Skip Montanaro5ff14922005-05-16 02:42:22 +0000599\dataline{O_SHLOCK}
600\dataline{O_EXLOCK}
Tim Petersde833212004-07-15 05:46:37 +0000601More options for the \var{flag} argument to the \function{open()} function.
602Availability: Macintosh, \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +0000603\end{datadesc}
604
Fred Drake3ac977e2000-08-11 20:19:51 +0000605\begin{datadesc}{O_BINARY}
606Option for the \var{flag} argument to the \function{open()} function.
607This can be bit-wise OR'd together with those listed above.
Brett Cannon7706c2d2005-02-13 22:50:04 +0000608Availability: Windows.
Fred Drake3ac977e2000-08-11 20:19:51 +0000609% XXX need to check on the availability of this one.
610\end{datadesc}
611
Tim Petersc48a3ca2002-01-30 05:49:46 +0000612\begin{datadesc}{O_NOINHERIT}
613\dataline{O_SHORT_LIVED}
614\dataline{O_TEMPORARY}
615\dataline{O_RANDOM}
616\dataline{O_SEQUENTIAL}
617\dataline{O_TEXT}
618Options for the \var{flag} argument to the \function{open()} function.
619These can be bit-wise OR'd together.
620Availability: Windows.
621\end{datadesc}
Fred Drake215fe2f1999-02-02 19:02:35 +0000622
Martin v. Löwis22b457e2005-01-16 08:40:58 +0000623\begin{datadesc}{SEEK_SET}
624\dataline{SEEK_CUR}
625\dataline{SEEK_END}
Fred Drakeb184ae82005-01-19 03:39:17 +0000626Parameters to the \function{lseek()} function.
Martin v. Löwis22b457e2005-01-16 08:40:58 +0000627Their values are 0, 1, and 2, respectively.
628Availability: Windows, Macintosh, \UNIX.
629\versionadded{2.5}
630\end{datadesc}
631
Fred Drake215fe2f1999-02-02 19:02:35 +0000632\subsection{Files and Directories \label{os-file-dir}}
633
634\begin{funcdesc}{access}{path, mode}
Fred Drake7f591242002-06-18 16:15:51 +0000635Use the real uid/gid to test for access to \var{path}. Note that most
636operations will use the effective uid/gid, therefore this routine can
637be used in a suid/sgid environment to test if the invoking user has the
638specified access to \var{path}. \var{mode} should be \constant{F_OK}
639to test the existence of \var{path}, or it can be the inclusive OR of
640one or more of \constant{R_OK}, \constant{W_OK}, and \constant{X_OK} to
Raymond Hettinger9b4dab42003-12-31 18:37:28 +0000641test permissions. Return \constant{True} if access is allowed,
642\constant{False} if not.
Fred Drake38e5d272000-04-03 20:13:55 +0000643See the \UNIX{} man page \manpage{access}{2} for more information.
Brett Cannon7706c2d2005-02-13 22:50:04 +0000644Availability: Macintosh, \UNIX, Windows.
Georg Brandlb37b8ec2005-07-17 21:10:11 +0000645
646\note{Using \function{access()} to check if a user is authorized to e.g.
647open a file before actually doing so using \function{open()} creates a
648security hole, because the user might exploit the short time interval
649between checking and opening the file to manipulate it.}
Neal Norwitz92ff6932005-10-03 05:13:46 +0000650
651\note{I/O operations may fail even when \function{access()}
652indicates that they would succeed, particularly for operations
653on network filesystems which may have permissions semantics
654beyond the usual \POSIX{} permission-bit model.}
Fred Drake215fe2f1999-02-02 19:02:35 +0000655\end{funcdesc}
656
Fred Drake38e5d272000-04-03 20:13:55 +0000657\begin{datadesc}{F_OK}
658 Value to pass as the \var{mode} parameter of \function{access()} to
659 test the existence of \var{path}.
660\end{datadesc}
661
662\begin{datadesc}{R_OK}
663 Value to include in the \var{mode} parameter of \function{access()}
664 to test the readability of \var{path}.
665\end{datadesc}
666
667\begin{datadesc}{W_OK}
668 Value to include in the \var{mode} parameter of \function{access()}
669 to test the writability of \var{path}.
670\end{datadesc}
671
672\begin{datadesc}{X_OK}
673 Value to include in the \var{mode} parameter of \function{access()}
674 to determine if \var{path} can be executed.
675\end{datadesc}
676
Fred Drake6db897c1999-07-12 16:49:30 +0000677\begin{funcdesc}{chdir}{path}
678\index{directory!changing}
679Change the current working directory to \var{path}.
Fred Drakec37b65e2001-11-28 07:26:15 +0000680Availability: Macintosh, \UNIX, Windows.
Fred Drake6db897c1999-07-12 16:49:30 +0000681\end{funcdesc}
682
Fred Drake15498552002-04-15 19:41:27 +0000683\begin{funcdesc}{fchdir}{fd}
684Change the current working directory to the directory represented by
685the file descriptor \var{fd}. The descriptor must refer to an opened
686directory, not an open file.
687Availability: \UNIX.
688\versionadded{2.3}
689\end{funcdesc}
690
Fred Drake6db897c1999-07-12 16:49:30 +0000691\begin{funcdesc}{getcwd}{}
692Return a string representing the current working directory.
Fred Drakec37b65e2001-11-28 07:26:15 +0000693Availability: Macintosh, \UNIX, Windows.
Fred Drake6db897c1999-07-12 16:49:30 +0000694\end{funcdesc}
695
Martin v. Löwisa844f2d2002-10-05 09:46:48 +0000696\begin{funcdesc}{getcwdu}{}
697Return a Unicode object representing the current working directory.
Brett Cannon7706c2d2005-02-13 22:50:04 +0000698Availability: Macintosh, \UNIX, Windows.
Martin v. Löwisa844f2d2002-10-05 09:46:48 +0000699\versionadded{2.3}
700\end{funcdesc}
701
Thomas Wouterscf297e42007-02-23 15:07:44 +0000702\begin{funcdesc}{chflags}{path, flags}
703Set the flags of \var{path} to the numeric \var{flags}.
704\var{flags} may take a combination (bitwise OR) of the following values
705(as defined in the \module{stat} module):
706\begin{itemize}
707 \item \code{UF_NODUMP}
708 \item \code{UF_IMMUTABLE}
709 \item \code{UF_APPEND}
710 \item \code{UF_OPAQUE}
711 \item \code{UF_NOUNLINK}
712 \item \code{SF_ARCHIVED}
713 \item \code{SF_IMMUTABLE}
714 \item \code{SF_APPEND}
715 \item \code{SF_NOUNLINK}
716 \item \code{SF_SNAPSHOT}
717\end{itemize}
718Availability: Macintosh, \UNIX.
719\versionadded{2.6}
720\end{funcdesc}
721
Martin v. Löwis244edc82001-10-04 22:44:26 +0000722\begin{funcdesc}{chroot}{path}
723Change the root directory of the current process to \var{path}.
Brett Cannon7706c2d2005-02-13 22:50:04 +0000724Availability: Macintosh, \UNIX.
Martin v. Löwis244edc82001-10-04 22:44:26 +0000725\versionadded{2.2}
726\end{funcdesc}
727
Fred Drake215fe2f1999-02-02 19:02:35 +0000728\begin{funcdesc}{chmod}{path, mode}
729Change the mode of \var{path} to the numeric \var{mode}.
Raymond Hettinger0a6aa282003-08-31 05:09:52 +0000730\var{mode} may take one of the following values
Georg Brandla6ba6022005-11-22 19:15:27 +0000731(as defined in the \module{stat} module) or bitwise or-ed
732combinations of them:
Raymond Hettinger9f5b07d2003-01-06 13:31:26 +0000733\begin{itemize}
734 \item \code{S_ISUID}
735 \item \code{S_ISGID}
736 \item \code{S_ENFMT}
737 \item \code{S_ISVTX}
738 \item \code{S_IREAD}
739 \item \code{S_IWRITE}
740 \item \code{S_IEXEC}
741 \item \code{S_IRWXU}
742 \item \code{S_IRUSR}
743 \item \code{S_IWUSR}
744 \item \code{S_IXUSR}
745 \item \code{S_IRWXG}
746 \item \code{S_IRGRP}
747 \item \code{S_IWGRP}
748 \item \code{S_IXGRP}
749 \item \code{S_IRWXO}
750 \item \code{S_IROTH}
751 \item \code{S_IWOTH}
752 \item \code{S_IXOTH}
753\end{itemize}
Brett Cannon7706c2d2005-02-13 22:50:04 +0000754Availability: Macintosh, \UNIX, Windows.
Georg Brandl2d8cc612005-07-18 08:16:33 +0000755
756\note{Although Windows supports \function{chmod()}, you can only
757set the file's read-only flag with it (via the \code{S_IWRITE}
758and \code{S_IREAD} constants or a corresponding integer value).
759All other bits are ignored.}
Fred Drake215fe2f1999-02-02 19:02:35 +0000760\end{funcdesc}
761
762\begin{funcdesc}{chown}{path, uid, gid}
763Change the owner and group id of \var{path} to the numeric \var{uid}
Georg Brandl0929b7e2005-06-25 18:52:24 +0000764and \var{gid}. To leave one of the ids unchanged, set it to -1.
Brett Cannon7706c2d2005-02-13 22:50:04 +0000765Availability: Macintosh, \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +0000766\end{funcdesc}
767
Thomas Wouterscf297e42007-02-23 15:07:44 +0000768\begin{funcdesc}{lchflags}{path, flags}
769Set the flags of \var{path} to the numeric \var{flags}, like
770\function{chflags()}, but do not follow symbolic links.
771Availability: \UNIX.
772\versionadded{2.6}
773\end{funcdesc}
774
Martin v. Löwis0cec0ff2002-07-28 16:33:45 +0000775\begin{funcdesc}{lchown}{path, uid, gid}
776Change the owner and group id of \var{path} to the numeric \var{uid}
777and gid. This function will not follow symbolic links.
Brett Cannon7706c2d2005-02-13 22:50:04 +0000778Availability: Macintosh, \UNIX.
Martin v. Löwis0cec0ff2002-07-28 16:33:45 +0000779\versionadded{2.3}
780\end{funcdesc}
781
Fred Drake215fe2f1999-02-02 19:02:35 +0000782\begin{funcdesc}{link}{src, dst}
783Create a hard link pointing to \var{src} named \var{dst}.
Brett Cannon7706c2d2005-02-13 22:50:04 +0000784Availability: Macintosh, \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +0000785\end{funcdesc}
786
787\begin{funcdesc}{listdir}{path}
788Return a list containing the names of the entries in the directory.
789The list is in arbitrary order. It does not include the special
790entries \code{'.'} and \code{'..'} even if they are present in the
791directory.
Fred Drakec37b65e2001-11-28 07:26:15 +0000792Availability: Macintosh, \UNIX, Windows.
Martin v. Löwisa844f2d2002-10-05 09:46:48 +0000793
Fred Drake9f3ae3e2005-08-09 15:24:05 +0000794\versionchanged[On Windows NT/2k/XP and \UNIX, if \var{path} is a Unicode
Georg Brandla635fbb2006-01-15 07:55:35 +0000795object, the result will be a list of Unicode objects]{2.3}
Fred Drake215fe2f1999-02-02 19:02:35 +0000796\end{funcdesc}
797
798\begin{funcdesc}{lstat}{path}
799Like \function{stat()}, but do not follow symbolic links.
Brett Cannon7706c2d2005-02-13 22:50:04 +0000800Availability: Macintosh, \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +0000801\end{funcdesc}
802
803\begin{funcdesc}{mkfifo}{path\optional{, mode}}
804Create a FIFO (a named pipe) named \var{path} with numeric mode
805\var{mode}. The default \var{mode} is \code{0666} (octal). The current
806umask value is first masked out from the mode.
Brett Cannon7706c2d2005-02-13 22:50:04 +0000807Availability: Macintosh, \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +0000808
809FIFOs are pipes that can be accessed like regular files. FIFOs exist
810until they are deleted (for example with \function{os.unlink()}).
811Generally, FIFOs are used as rendezvous between ``client'' and
812``server'' type processes: the server opens the FIFO for reading, and
813the client opens it for writing. Note that \function{mkfifo()}
814doesn't open the FIFO --- it just creates the rendezvous point.
815\end{funcdesc}
816
Georg Brandl6bc6ed82006-01-02 22:07:06 +0000817\begin{funcdesc}{mknod}{filename\optional{, mode=0600, device}}
Martin v. Löwis06a83e92002-04-14 10:19:44 +0000818Create a filesystem node (file, device special file or named pipe)
Georg Brandl6bc6ed82006-01-02 22:07:06 +0000819named \var{filename}. \var{mode} specifies both the permissions to use and
Martin v. Löwisdbe3f762002-10-10 14:27:30 +0000820the type of node to be created, being combined (bitwise OR) with one
821of S_IFREG, S_IFCHR, S_IFBLK, and S_IFIFO (those constants are
822available in \module{stat}). For S_IFCHR and S_IFBLK, \var{device}
823defines the newly created device special file (probably using
824\function{os.makedev()}), otherwise it is ignored.
Martin v. Löwisdbe3f762002-10-10 14:27:30 +0000825\versionadded{2.3}
826\end{funcdesc}
827
828\begin{funcdesc}{major}{device}
Neal Norwitz7ecbc192005-10-03 05:47:38 +0000829Extracts the device major number from a raw device number (usually
830the \member{st_dev} or \member{st_rdev} field from \ctype{stat}).
Martin v. Löwisdbe3f762002-10-10 14:27:30 +0000831\versionadded{2.3}
832\end{funcdesc}
833
834\begin{funcdesc}{minor}{device}
Neal Norwitz7ecbc192005-10-03 05:47:38 +0000835Extracts the device minor number from a raw device number (usually
836the \member{st_dev} or \member{st_rdev} field from \ctype{stat}).
Martin v. Löwisdbe3f762002-10-10 14:27:30 +0000837\versionadded{2.3}
838\end{funcdesc}
839
840\begin{funcdesc}{makedev}{major, minor}
841Composes a raw device number from the major and minor device numbers.
Martin v. Löwis06a83e92002-04-14 10:19:44 +0000842\versionadded{2.3}
843\end{funcdesc}
844
Fred Drake215fe2f1999-02-02 19:02:35 +0000845\begin{funcdesc}{mkdir}{path\optional{, mode}}
846Create a directory named \var{path} with numeric mode \var{mode}.
847The default \var{mode} is \code{0777} (octal). On some systems,
848\var{mode} is ignored. Where it is used, the current umask value is
849first masked out.
Fred Drakec37b65e2001-11-28 07:26:15 +0000850Availability: Macintosh, \UNIX, Windows.
Fred Drake215fe2f1999-02-02 19:02:35 +0000851\end{funcdesc}
852
853\begin{funcdesc}{makedirs}{path\optional{, mode}}
Fred Drake5c7b2482003-03-20 17:39:38 +0000854Recursive directory creation function.\index{directory!creating}
855\index{UNC paths!and \function{os.makedirs()}}
856Like \function{mkdir()},
Fred Drake215fe2f1999-02-02 19:02:35 +0000857but makes all intermediate-level directories needed to contain the
858leaf directory. Throws an \exception{error} exception if the leaf
859directory already exists or cannot be created. The default \var{mode}
Georg Brandlc1d2f7b2005-12-17 17:14:12 +0000860is \code{0777} (octal). On some systems, \var{mode} is ignored.
861Where it is used, the current umask value is first masked out.
Georg Brandl852a5422005-12-17 17:47:42 +0000862\note{\function{makedirs()} will become confused if the path elements
863to create include \var{os.pardir}.}
Fred Drake215fe2f1999-02-02 19:02:35 +0000864\versionadded{1.5.2}
Georg Brandle3faaeb2005-11-22 20:14:29 +0000865\versionchanged[This function now handles UNC paths correctly]{2.3}
Fred Drake215fe2f1999-02-02 19:02:35 +0000866\end{funcdesc}
867
Fred Drake88f6ca21999-12-15 19:39:04 +0000868\begin{funcdesc}{pathconf}{path, name}
Thomas Woutersf8316632000-07-16 19:01:10 +0000869Return system configuration information relevant to a named file.
Fred Drake88f6ca21999-12-15 19:39:04 +0000870\var{name} specifies the configuration value to retrieve; it may be a
871string which is the name of a defined system value; these names are
Raymond Hettingerb67449d2003-09-08 18:52:18 +0000872specified in a number of standards (\POSIX.1, \UNIX{} 95, \UNIX{} 98, and
Fred Drake88f6ca21999-12-15 19:39:04 +0000873others). Some platforms define additional names as well. The names
874known to the host operating system are given in the
875\code{pathconf_names} dictionary. For configuration variables not
876included in that mapping, passing an integer for \var{name} is also
877accepted.
Brett Cannon7706c2d2005-02-13 22:50:04 +0000878Availability: Macintosh, \UNIX.
Fred Drake88f6ca21999-12-15 19:39:04 +0000879
880If \var{name} is a string and is not known, \exception{ValueError} is
881raised. If a specific value for \var{name} is not supported by the
882host system, even if it is included in \code{pathconf_names}, an
883\exception{OSError} is raised with \constant{errno.EINVAL} for the
884error number.
885\end{funcdesc}
886
887\begin{datadesc}{pathconf_names}
888Dictionary mapping names accepted by \function{pathconf()} and
889\function{fpathconf()} to the integer values defined for those names
890by the host operating system. This can be used to determine the set
891of names known to the system.
Brett Cannon7706c2d2005-02-13 22:50:04 +0000892Availability: Macintosh, \UNIX.
Fred Drake88f6ca21999-12-15 19:39:04 +0000893\end{datadesc}
894
Fred Drake215fe2f1999-02-02 19:02:35 +0000895\begin{funcdesc}{readlink}{path}
896Return a string representing the path to which the symbolic link
Fred Drakedc9e7e42001-05-29 18:13:06 +0000897points. The result may be either an absolute or relative pathname; if
898it is relative, it may be converted to an absolute pathname using
899\code{os.path.join(os.path.dirname(\var{path}), \var{result})}.
Thomas Wouters89f507f2006-12-13 04:49:30 +0000900\versionchanged [If the \var{path} is a Unicode object the result will also
901be a Unicode object]{2.6}
Brett Cannon7706c2d2005-02-13 22:50:04 +0000902Availability: Macintosh, \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +0000903\end{funcdesc}
904
905\begin{funcdesc}{remove}{path}
Fred Drakedc9e7e42001-05-29 18:13:06 +0000906Remove the file \var{path}. If \var{path} is a directory,
907\exception{OSError} is raised; see \function{rmdir()} below to remove
908a directory. This is identical to the \function{unlink()} function
909documented below. On Windows, attempting to remove a file that is in
910use causes an exception to be raised; on \UNIX, the directory entry is
911removed but the storage allocated to the file is not made available
912until the original file is no longer in use.
Fred Drakec37b65e2001-11-28 07:26:15 +0000913Availability: Macintosh, \UNIX, Windows.
Fred Drake215fe2f1999-02-02 19:02:35 +0000914\end{funcdesc}
915
916\begin{funcdesc}{removedirs}{path}
917\index{directory!deleting}
Fred Drake2c22e852002-07-02 21:03:49 +0000918Removes directories recursively. Works like
Fred Drake215fe2f1999-02-02 19:02:35 +0000919\function{rmdir()} except that, if the leaf directory is
Georg Brandl69cb3cd2005-12-17 17:31:03 +0000920successfully removed, \function{removedirs()}
921tries to successively remove every parent directory mentioned in
922\var{path} until an error is raised (which is ignored, because
923it generally means that a parent directory is not empty).
924For example, \samp{os.removedirs('foo/bar/baz')} will first remove
925the directory \samp{'foo/bar/baz'}, and then remove \samp{'foo/bar'}
926and \samp{'foo'} if they are empty.
927Raises \exception{OSError} if the leaf directory could not be
928successfully removed.
Fred Drake215fe2f1999-02-02 19:02:35 +0000929\versionadded{1.5.2}
930\end{funcdesc}
931
932\begin{funcdesc}{rename}{src, dst}
Fred Drakedc9e7e42001-05-29 18:13:06 +0000933Rename the file or directory \var{src} to \var{dst}. If \var{dst} is
934a directory, \exception{OSError} will be raised. On \UNIX, if
935\var{dst} exists and is a file, it will be removed silently if the
936user has permission. The operation may fail on some \UNIX{} flavors
Skip Montanarob9d973d2001-06-04 15:31:17 +0000937if \var{src} and \var{dst} are on different filesystems. If
Fred Drakedc9e7e42001-05-29 18:13:06 +0000938successful, the renaming will be an atomic operation (this is a
939\POSIX{} requirement). On Windows, if \var{dst} already exists,
940\exception{OSError} will be raised even if it is a file; there may be
941no way to implement an atomic rename when \var{dst} names an existing
942file.
Fred Drakec37b65e2001-11-28 07:26:15 +0000943Availability: Macintosh, \UNIX, Windows.
Fred Drake215fe2f1999-02-02 19:02:35 +0000944\end{funcdesc}
945
946\begin{funcdesc}{renames}{old, new}
947Recursive directory or file renaming function.
948Works like \function{rename()}, except creation of any intermediate
949directories needed to make the new pathname good is attempted first.
950After the rename, directories corresponding to rightmost path segments
951of the old name will be pruned away using \function{removedirs()}.
Fred Drake215fe2f1999-02-02 19:02:35 +0000952\versionadded{1.5.2}
Fred Drake0ed66342004-04-16 15:20:01 +0000953
954\begin{notice}
955This function can fail with the new directory structure made if
956you lack permissions needed to remove the leaf directory or file.
957\end{notice}
Fred Drake215fe2f1999-02-02 19:02:35 +0000958\end{funcdesc}
959
960\begin{funcdesc}{rmdir}{path}
961Remove the directory \var{path}.
Fred Drakec37b65e2001-11-28 07:26:15 +0000962Availability: Macintosh, \UNIX, Windows.
Fred Drake215fe2f1999-02-02 19:02:35 +0000963\end{funcdesc}
964
965\begin{funcdesc}{stat}{path}
966Perform a \cfunction{stat()} system call on the given path. The
Fred Drake6995bb62001-11-29 20:48:44 +0000967return value is an object whose attributes correspond to the members of
968the \ctype{stat} structure, namely:
969\member{st_mode} (protection bits),
970\member{st_ino} (inode number),
971\member{st_dev} (device),
Raymond Hettinger52136a82003-05-10 03:35:37 +0000972\member{st_nlink} (number of hard links),
Fred Drake6995bb62001-11-29 20:48:44 +0000973\member{st_uid} (user ID of owner),
974\member{st_gid} (group ID of owner),
975\member{st_size} (size of file, in bytes),
976\member{st_atime} (time of most recent access),
977\member{st_mtime} (time of most recent content modification),
978\member{st_ctime}
Fred Drake1cd6e4d2004-05-12 03:51:40 +0000979(platform dependent; time of most recent metadata change on \UNIX, or
Facundo Batistabccc9a92005-01-07 02:50:22 +0000980the time of creation on Windows):
981
982\begin{verbatim}
983>>> import os
984>>> statinfo = os.stat('somefile.txt')
985>>> statinfo
986(33188, 422511L, 769L, 1, 1032, 100, 926L, 1105022698,1105022732, 1105022732)
987>>> statinfo.st_size
988926L
989>>>
990\end{verbatim}
Fred Drake6995bb62001-11-29 20:48:44 +0000991
Martin v. Löwisf607bda2002-10-16 18:27:39 +0000992\versionchanged [If \function{stat_float_times} returns true, the time
993values are floats, measuring seconds. Fractions of a second may be
994reported if the system supports that. On Mac OS, the times are always
Georg Brandl4865e4a2006-01-22 19:34:59 +0000995floats. See \function{stat_float_times} for further discussion]{2.3}
Martin v. Löwisa32c9942002-09-09 16:17:47 +0000996
Fred Drake9f3ae3e2005-08-09 15:24:05 +0000997On some \UNIX{} systems (such as Linux), the following attributes may
Fred Drake6995bb62001-11-29 20:48:44 +0000998also be available:
999\member{st_blocks} (number of blocks allocated for file),
1000\member{st_blksize} (filesystem blocksize),
1001\member{st_rdev} (type of device if an inode device).
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001002\member{st_flags} (user defined flags for file).
Fred Drake6995bb62001-11-29 20:48:44 +00001003
Fred Drake9f3ae3e2005-08-09 15:24:05 +00001004On other \UNIX{} systems (such as FreeBSD), the following attributes
Georg Brandl4865e4a2006-01-22 19:34:59 +00001005may be available (but may be only filled out if root tries to
1006use them):
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001007\member{st_gen} (file generation number),
1008\member{st_birthtime} (time of file creation).
1009
Fred Drake6995bb62001-11-29 20:48:44 +00001010On Mac OS systems, the following attributes may also be available:
1011\member{st_rsize},
1012\member{st_creator},
1013\member{st_type}.
1014
1015On RISCOS systems, the following attributes are also available:
1016\member{st_ftype} (file type),
1017\member{st_attrs} (attributes),
1018\member{st_obtype} (object type).
1019
1020For backward compatibility, the return value of \function{stat()} is
1021also accessible as a tuple of at least 10 integers giving the most
1022important (and portable) members of the \ctype{stat} structure, in the
Fred Drake215fe2f1999-02-02 19:02:35 +00001023order
Fred Drake6995bb62001-11-29 20:48:44 +00001024\member{st_mode},
1025\member{st_ino},
1026\member{st_dev},
1027\member{st_nlink},
1028\member{st_uid},
1029\member{st_gid},
1030\member{st_size},
1031\member{st_atime},
1032\member{st_mtime},
1033\member{st_ctime}.
Tim Peters11b23062003-04-23 02:39:17 +00001034More items may be added at the end by some implementations.
Fred Drake6995bb62001-11-29 20:48:44 +00001035The standard module \refmodule{stat}\refstmodindex{stat} defines
1036functions and constants that are useful for extracting information
1037from a \ctype{stat} structure.
Fred Drake8ee679f2001-07-14 02:50:55 +00001038(On Windows, some items are filled with dummy values.)
Tim Peters2cf5e192004-11-04 21:27:48 +00001039
1040\note{The exact meaning and resolution of the \member{st_atime},
1041 \member{st_mtime}, and \member{st_ctime} members depends on the
1042 operating system and the file system. For example, on Windows systems
1043 using the FAT or FAT32 file systems, \member{st_mtime} has 2-second
1044 resolution, and \member{st_atime} has only 1-day resolution. See
1045 your operating system documentation for details.}
1046
Fred Drakec37b65e2001-11-28 07:26:15 +00001047Availability: Macintosh, \UNIX, Windows.
Fred Drake215fe2f1999-02-02 19:02:35 +00001048
Fred Drake6995bb62001-11-29 20:48:44 +00001049\versionchanged
1050[Added access to values as attributes of the returned object]{2.2}
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001051\versionchanged[Added st_gen, st_birthtime]{2.5}
Fred Drake215fe2f1999-02-02 19:02:35 +00001052\end{funcdesc}
1053
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001054\begin{funcdesc}{stat_float_times}{\optional{newvalue}}
1055Determine whether \class{stat_result} represents time stamps as float
Georg Brandl4865e4a2006-01-22 19:34:59 +00001056objects. If \var{newvalue} is \code{True}, future calls to \function{stat()}
1057return floats, if it is \code{False}, future calls return ints.
1058If \var{newvalue} is omitted, return the current setting.
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001059
Martin v. Löwis4d394df2005-01-23 09:19:22 +00001060For compatibility with older Python versions, accessing
1061\class{stat_result} as a tuple always returns integers.
1062
Martin v. Löwisfe33d0b2005-01-16 08:57:39 +00001063\versionchanged[Python now returns float values by default. Applications
1064which do not work correctly with floating point time stamps can use
1065this function to restore the old behaviour]{2.5}
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001066
Georg Brandl4865e4a2006-01-22 19:34:59 +00001067The resolution of the timestamps (that is the smallest possible fraction)
Martin v. Löwisfe33d0b2005-01-16 08:57:39 +00001068depends on the system. Some systems only support second resolution;
1069on these systems, the fraction will always be zero.
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001070
1071It is recommended that this setting is only changed at program startup
1072time in the \var{__main__} module; libraries should never change this
1073setting. If an application uses a library that works incorrectly if
1074floating point time stamps are processed, this application should turn
1075the feature off until the library has been corrected.
1076
1077\end{funcdesc}
1078
Fred Drake215fe2f1999-02-02 19:02:35 +00001079\begin{funcdesc}{statvfs}{path}
1080Perform a \cfunction{statvfs()} system call on the given path. The
Fred Drake6995bb62001-11-29 20:48:44 +00001081return value is an object whose attributes describe the filesystem on
1082the given path, and correspond to the members of the
1083\ctype{statvfs} structure, namely:
Neal Norwitz7356dcb2006-03-03 23:11:42 +00001084\member{f_bsize},
Fred Drake6995bb62001-11-29 20:48:44 +00001085\member{f_frsize},
1086\member{f_blocks},
1087\member{f_bfree},
1088\member{f_bavail},
1089\member{f_files},
1090\member{f_ffree},
1091\member{f_favail},
1092\member{f_flag},
1093\member{f_namemax}.
Fred Drakec37b65e2001-11-28 07:26:15 +00001094Availability: \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +00001095
Fred Drake6995bb62001-11-29 20:48:44 +00001096For backward compatibility, the return value is also accessible as a
1097tuple whose values correspond to the attributes, in the order given above.
1098The standard module \refmodule{statvfs}\refstmodindex{statvfs}
Fred Drake215fe2f1999-02-02 19:02:35 +00001099defines constants that are useful for extracting information
Fred Drake6995bb62001-11-29 20:48:44 +00001100from a \ctype{statvfs} structure when accessing it as a sequence; this
1101remains useful when writing code that needs to work with versions of
1102Python that don't support accessing the fields as attributes.
1103
1104\versionchanged
1105[Added access to values as attributes of the returned object]{2.2}
Fred Drake215fe2f1999-02-02 19:02:35 +00001106\end{funcdesc}
1107
1108\begin{funcdesc}{symlink}{src, dst}
1109Create a symbolic link pointing to \var{src} named \var{dst}.
Fred Drakec37b65e2001-11-28 07:26:15 +00001110Availability: \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +00001111\end{funcdesc}
1112
Fred Drake18f7a451999-12-09 22:11:43 +00001113\begin{funcdesc}{tempnam}{\optional{dir\optional{, prefix}}}
1114Return a unique path name that is reasonable for creating a temporary
1115file. This will be an absolute path that names a potential directory
1116entry in the directory \var{dir} or a common location for temporary
1117files if \var{dir} is omitted or \code{None}. If given and not
1118\code{None}, \var{prefix} is used to provide a short prefix to the
1119filename. Applications are responsible for properly creating and
1120managing files created using paths returned by \function{tempnam()};
1121no automatic cleanup is provided.
Fred Drake4b9ed2f2002-11-12 22:07:11 +00001122On \UNIX, the environment variable \envvar{TMPDIR} overrides
1123\var{dir}, while on Windows the \envvar{TMP} is used. The specific
1124behavior of this function depends on the C library implementation;
1125some aspects are underspecified in system documentation.
Fred Drake938a8d72001-10-09 18:07:04 +00001126\warning{Use of \function{tempnam()} is vulnerable to symlink attacks;
Georg Brandl6df3fd32005-06-25 20:44:10 +00001127consider using \function{tmpfile()} (section \ref{os-newstreams})
1128instead.} Availability: Macintosh, \UNIX, Windows.
Fred Drake18f7a451999-12-09 22:11:43 +00001129\end{funcdesc}
1130
1131\begin{funcdesc}{tmpnam}{}
1132Return a unique path name that is reasonable for creating a temporary
1133file. This will be an absolute path that names a potential directory
1134entry in a common location for temporary files. Applications are
1135responsible for properly creating and managing files created using
1136paths returned by \function{tmpnam()}; no automatic cleanup is
1137provided.
Fred Drake938a8d72001-10-09 18:07:04 +00001138\warning{Use of \function{tmpnam()} is vulnerable to symlink attacks;
Georg Brandl6df3fd32005-06-25 20:44:10 +00001139consider using \function{tmpfile()} (section \ref{os-newstreams})
1140instead.} Availability: \UNIX, Windows. This function probably
1141shouldn't be used on Windows, though: Microsoft's implementation of
1142\function{tmpnam()} always creates a name in the root directory of the
1143current drive, and that's generally a poor location for a temp file
1144(depending on privileges, you may not even be able to open a file
1145using this name).
Fred Drake18f7a451999-12-09 22:11:43 +00001146\end{funcdesc}
1147
1148\begin{datadesc}{TMP_MAX}
1149The maximum number of unique names that \function{tmpnam()} will
1150generate before reusing names.
1151\end{datadesc}
1152
Fred Drake215fe2f1999-02-02 19:02:35 +00001153\begin{funcdesc}{unlink}{path}
1154Remove the file \var{path}. This is the same function as
1155\function{remove()}; the \function{unlink()} name is its traditional
1156\UNIX{} name.
Fred Drakec37b65e2001-11-28 07:26:15 +00001157Availability: Macintosh, \UNIX, Windows.
Fred Drake215fe2f1999-02-02 19:02:35 +00001158\end{funcdesc}
1159
Barry Warsaw93a8eac2000-05-01 16:18:22 +00001160\begin{funcdesc}{utime}{path, times}
1161Set the access and modified times of the file specified by \var{path}.
1162If \var{times} is \code{None}, then the file's access and modified
1163times are set to the current time. Otherwise, \var{times} must be a
Fred Drakee06d0252000-05-02 17:29:35 +000011642-tuple of numbers, of the form \code{(\var{atime}, \var{mtime})}
1165which is used to set the access and modified times, respectively.
Tim Peters2cf5e192004-11-04 21:27:48 +00001166Whether a directory can be given for \var{path} depends on whether the
1167operating system implements directories as files (for example, Windows
1168does not). Note that the exact times you set here may not be returned
1169by a subsequent \function{stat()} call, depending on the resolution
1170with which your operating system records access and modification times;
1171see \function{stat()}.
Fred Drake4a152632000-10-19 05:33:46 +00001172\versionchanged[Added support for \code{None} for \var{times}]{2.0}
Fred Drakec37b65e2001-11-28 07:26:15 +00001173Availability: Macintosh, \UNIX, Windows.
Fred Drake215fe2f1999-02-02 19:02:35 +00001174\end{funcdesc}
1175
Guido van Rossumbf1bef82003-05-13 18:01:19 +00001176\begin{funcdesc}{walk}{top\optional{, topdown\code{=True}
Guido van Rossumd8faa362007-04-27 19:54:29 +00001177 \optional{, onerror\code{=None}\optional{,
1178 followlinks\code{=False}}}}}
Tim Petersc4e09402003-04-25 07:11:48 +00001179\index{directory!walking}
1180\index{directory!traversal}
Tim Petersbf89b3a2003-04-28 02:09:43 +00001181\function{walk()} generates the file names in a directory tree, by
1182walking the tree either top down or bottom up.
Tim Petersc4e09402003-04-25 07:11:48 +00001183For each directory in the tree rooted at directory \var{top} (including
1184\var{top} itself), it yields a 3-tuple
1185\code{(\var{dirpath}, \var{dirnames}, \var{filenames})}.
1186
1187\var{dirpath} is a string, the path to the directory. \var{dirnames} is
1188a list of the names of the subdirectories in \var{dirpath}
1189(excluding \code{'.'} and \code{'..'}). \var{filenames} is a list of
1190the names of the non-directory files in \var{dirpath}. Note that the
1191names in the lists contain no path components. To get a full
Fred Drake2194a4e2003-04-25 14:50:06 +00001192path (which begins with \var{top}) to a file or directory in
Tim Petersc4e09402003-04-25 07:11:48 +00001193\var{dirpath}, do \code{os.path.join(\var{dirpath}, \var{name})}.
1194
1195If optional argument \var{topdown} is true or not specified, the triple
1196for a directory is generated before the triples for any of its
1197subdirectories (directories are generated top down). If \var{topdown} is
1198false, the triple for a directory is generated after the triples for all
1199of its subdirectories (directories are generated bottom up).
1200
1201When \var{topdown} is true, the caller can modify the \var{dirnames} list
Raymond Hettinger9756f382003-09-10 00:11:28 +00001202in-place (perhaps using \keyword{del} or slice assignment), and
Tim Petersc4e09402003-04-25 07:11:48 +00001203\function{walk()} will only recurse into the subdirectories whose names
1204remain in \var{dirnames}; this can be used to prune the search,
1205impose a specific order of visiting, or even to inform \function{walk()}
1206about directories the caller creates or renames before it resumes
1207\function{walk()} again. Modifying \var{dirnames} when \var{topdown} is
1208false is ineffective, because in bottom-up mode the directories in
Georg Brandlffa6f3d2006-01-22 20:47:26 +00001209\var{dirnames} are generated before \var{dirpath} itself is generated.
Tim Petersc4e09402003-04-25 07:11:48 +00001210
Guido van Rossumbf1bef82003-05-13 18:01:19 +00001211By default errors from the \code{os.listdir()} call are ignored. If
1212optional argument \var{onerror} is specified, it should be a function;
Georg Brandl4865e4a2006-01-22 19:34:59 +00001213it will be called with one argument, an \exception{OSError} instance. It can
Guido van Rossumbf1bef82003-05-13 18:01:19 +00001214report the error to continue with the walk, or raise the exception
1215to abort the walk. Note that the filename is available as the
1216\code{filename} attribute of the exception object.
1217
Guido van Rossumd8faa362007-04-27 19:54:29 +00001218By default, \function{walk()} will not walk down into symbolic links that
1219resolve to directories. Set \var{followlinks} to True to visit directories
1220pointed to by symlinks, on systems that support them.
1221
1222\versionadded[The \var{followlinks} parameter]{2.6}
1223
1224\begin{notice}
1225Be aware that setting \var{followlinks} to true can lead to infinite recursion
1226if a link points to a parent directory of itself. \function{walk()} does not
1227keep track of the directories it visited already.
1228\end{notice}
1229
Tim Petersc4e09402003-04-25 07:11:48 +00001230\begin{notice}
1231If you pass a relative pathname, don't change the current working
Fred Drake2194a4e2003-04-25 14:50:06 +00001232directory between resumptions of \function{walk()}. \function{walk()}
Tim Petersc4e09402003-04-25 07:11:48 +00001233never changes the current directory, and assumes that its caller
1234doesn't either.
1235\end{notice}
1236
Tim Petersc4e09402003-04-25 07:11:48 +00001237This example displays the number of bytes taken by non-directory files
1238in each directory under the starting directory, except that it doesn't
1239look under any CVS subdirectory:
1240
1241\begin{verbatim}
1242import os
1243from os.path import join, getsize
1244for root, dirs, files in os.walk('python/Lib/email'):
1245 print root, "consumes",
Tim Peters7f13cfa2004-11-22 16:53:46 +00001246 print sum(getsize(join(root, name)) for name in files),
Tim Petersc4e09402003-04-25 07:11:48 +00001247 print "bytes in", len(files), "non-directory files"
1248 if 'CVS' in dirs:
1249 dirs.remove('CVS') # don't visit CVS directories
1250\end{verbatim}
Tim Petersbf89b3a2003-04-28 02:09:43 +00001251
1252In the next example, walking the tree bottom up is essential:
1253\function{rmdir()} doesn't allow deleting a directory before the
1254directory is empty:
1255
1256\begin{verbatim}
Tim Peters919a3b42004-11-22 16:49:02 +00001257# Delete everything reachable from the directory named in 'top',
1258# assuming there are no symbolic links.
Tim Petersa390c6e2003-04-28 19:15:10 +00001259# CAUTION: This is dangerous! For example, if top == '/', it
1260# could delete all your disk files.
Tim Peters919a3b42004-11-22 16:49:02 +00001261import os
Tim Petersbf89b3a2003-04-28 02:09:43 +00001262for root, dirs, files in os.walk(top, topdown=False):
1263 for name in files:
Tim Peters919a3b42004-11-22 16:49:02 +00001264 os.remove(os.path.join(root, name))
Tim Petersbf89b3a2003-04-28 02:09:43 +00001265 for name in dirs:
Tim Peters919a3b42004-11-22 16:49:02 +00001266 os.rmdir(os.path.join(root, name))
Tim Petersbf89b3a2003-04-28 02:09:43 +00001267\end{verbatim}
1268
Tim Petersc4e09402003-04-25 07:11:48 +00001269\versionadded{2.3}
1270\end{funcdesc}
Fred Drake215fe2f1999-02-02 19:02:35 +00001271
1272\subsection{Process Management \label{os-process}}
1273
Fred Drake18f7a451999-12-09 22:11:43 +00001274These functions may be used to create and manage processes.
Fred Drake215fe2f1999-02-02 19:02:35 +00001275
Fred Drake7be31152000-09-23 05:22:07 +00001276The various \function{exec*()} functions take a list of arguments for
1277the new program loaded into the process. In each case, the first of
1278these arguments is passed to the new program as its own name rather
1279than as an argument a user may have typed on a command line. For the
1280C programmer, this is the \code{argv[0]} passed to a program's
1281\cfunction{main()}. For example, \samp{os.execv('/bin/echo', ['foo',
1282'bar'])} will only print \samp{bar} on standard output; \samp{foo}
1283will seem to be ignored.
1284
Fred Drake215fe2f1999-02-02 19:02:35 +00001285
Fred Drake18f7a451999-12-09 22:11:43 +00001286\begin{funcdesc}{abort}{}
1287Generate a \constant{SIGABRT} signal to the current process. On
Tim Petersab034fa2002-02-01 11:27:43 +00001288\UNIX, the default behavior is to produce a core dump; on Windows, the
Fred Drake18f7a451999-12-09 22:11:43 +00001289process immediately returns an exit code of \code{3}. Be aware that
1290programs which use \function{signal.signal()} to register a handler
1291for \constant{SIGABRT} will behave differently.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001292Availability: Macintosh, \UNIX, Windows.
Fred Drake18f7a451999-12-09 22:11:43 +00001293\end{funcdesc}
1294
Fred Drakedb7287c2001-10-18 18:58:30 +00001295\begin{funcdesc}{execl}{path, arg0, arg1, \moreargs}
1296\funcline{execle}{path, arg0, arg1, \moreargs, env}
1297\funcline{execlp}{file, arg0, arg1, \moreargs}
1298\funcline{execlpe}{file, arg0, arg1, \moreargs, env}
1299\funcline{execv}{path, args}
1300\funcline{execve}{path, args, env}
1301\funcline{execvp}{file, args}
1302\funcline{execvpe}{file, args, env}
1303These functions all execute a new program, replacing the current
1304process; they do not return. On \UNIX, the new executable is loaded
1305into the current process, and will have the same process ID as the
1306caller. Errors will be reported as \exception{OSError} exceptions.
Fred Drake215fe2f1999-02-02 19:02:35 +00001307
Fred Drakedb7287c2001-10-18 18:58:30 +00001308The \character{l} and \character{v} variants of the
1309\function{exec*()} functions differ in how command-line arguments are
1310passed. The \character{l} variants are perhaps the easiest to work
1311with if the number of parameters is fixed when the code is written;
1312the individual parameters simply become additional parameters to the
1313\function{execl*()} functions. The \character{v} variants are good
1314when the number of parameters is variable, with the arguments being
1315passed in a list or tuple as the \var{args} parameter. In either
Armin Rigob6aa8562004-09-27 19:54:33 +00001316case, the arguments to the child process should start with the name of
1317the command being run, but this is not enforced.
Fred Drake215fe2f1999-02-02 19:02:35 +00001318
Fred Drakedb7287c2001-10-18 18:58:30 +00001319The variants which include a \character{p} near the end
1320(\function{execlp()}, \function{execlpe()}, \function{execvp()},
1321and \function{execvpe()}) will use the \envvar{PATH} environment
1322variable to locate the program \var{file}. When the environment is
1323being replaced (using one of the \function{exec*e()} variants,
1324discussed in the next paragraph), the
1325new environment is used as the source of the \envvar{PATH} variable.
1326The other variants, \function{execl()}, \function{execle()},
1327\function{execv()}, and \function{execve()}, will not use the
1328\envvar{PATH} variable to locate the executable; \var{path} must
1329contain an appropriate absolute or relative path.
Fred Drake215fe2f1999-02-02 19:02:35 +00001330
Fred Drakedb7287c2001-10-18 18:58:30 +00001331For \function{execle()}, \function{execlpe()}, \function{execve()},
1332and \function{execvpe()} (note that these all end in \character{e}),
1333the \var{env} parameter must be a mapping which is used to define the
1334environment variables for the new process; the \function{execl()},
1335\function{execlp()}, \function{execv()}, and \function{execvp()}
1336all cause the new process to inherit the environment of the current
1337process.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001338Availability: Macintosh, \UNIX, Windows.
Fred Drake215fe2f1999-02-02 19:02:35 +00001339\end{funcdesc}
1340
1341\begin{funcdesc}{_exit}{n}
1342Exit to the system with status \var{n}, without calling cleanup
1343handlers, flushing stdio buffers, etc.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001344Availability: Macintosh, \UNIX, Windows.
Fred Drake215fe2f1999-02-02 19:02:35 +00001345
Fred Drake0ed66342004-04-16 15:20:01 +00001346\begin{notice}
1347The standard way to exit is \code{sys.exit(\var{n})}.
Fred Drake215fe2f1999-02-02 19:02:35 +00001348\function{_exit()} should normally only be used in the child process
1349after a \function{fork()}.
Fred Drake0ed66342004-04-16 15:20:01 +00001350\end{notice}
Fred Drake215fe2f1999-02-02 19:02:35 +00001351\end{funcdesc}
1352
Barry Warsawb6604b32003-01-07 22:43:25 +00001353The following exit codes are a defined, and can be used with
1354\function{_exit()}, although they are not required. These are
1355typically used for system programs written in Python, such as a
1356mail server's external command delivery program.
Fred Drake3e3b6992005-06-27 23:23:43 +00001357\note{Some of these may not be available on all \UNIX{} platforms,
1358since there is some variation. These constants are defined where they
1359are defined by the underlying platform.}
Barry Warsawb6604b32003-01-07 22:43:25 +00001360
1361\begin{datadesc}{EX_OK}
1362Exit code that means no error occurred.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001363Availability: Macintosh, \UNIX.
Barry Warsawb6604b32003-01-07 22:43:25 +00001364\versionadded{2.3}
1365\end{datadesc}
1366
1367\begin{datadesc}{EX_USAGE}
1368Exit code that means the command was used incorrectly, such as when
1369the wrong number of arguments are given.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001370Availability: Macintosh, \UNIX.
Barry Warsawb6604b32003-01-07 22:43:25 +00001371\versionadded{2.3}
1372\end{datadesc}
1373
1374\begin{datadesc}{EX_DATAERR}
1375Exit code that means the input data was incorrect.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001376Availability: Macintosh, \UNIX.
Barry Warsawb6604b32003-01-07 22:43:25 +00001377\versionadded{2.3}
1378\end{datadesc}
1379
1380\begin{datadesc}{EX_NOINPUT}
1381Exit code that means an input file did not exist or was not readable.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001382Availability: Macintosh, \UNIX.
Barry Warsawb6604b32003-01-07 22:43:25 +00001383\versionadded{2.3}
1384\end{datadesc}
1385
1386\begin{datadesc}{EX_NOUSER}
1387Exit code that means a specified user did not exist.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001388Availability: Macintosh, \UNIX.
Barry Warsawb6604b32003-01-07 22:43:25 +00001389\versionadded{2.3}
1390\end{datadesc}
1391
1392\begin{datadesc}{EX_NOHOST}
1393Exit code that means a specified host did not exist.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001394Availability: Macintosh, \UNIX.
Barry Warsawb6604b32003-01-07 22:43:25 +00001395\versionadded{2.3}
1396\end{datadesc}
1397
1398\begin{datadesc}{EX_UNAVAILABLE}
1399Exit code that means that a required service is unavailable.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001400Availability: Macintosh, \UNIX.
Barry Warsawb6604b32003-01-07 22:43:25 +00001401\versionadded{2.3}
1402\end{datadesc}
1403
1404\begin{datadesc}{EX_SOFTWARE}
1405Exit code that means an internal software error was detected.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001406Availability: Macintosh, \UNIX.
Barry Warsawb6604b32003-01-07 22:43:25 +00001407\versionadded{2.3}
1408\end{datadesc}
1409
1410\begin{datadesc}{EX_OSERR}
1411Exit code that means an operating system error was detected, such as
1412the inability to fork or create a pipe.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001413Availability: Macintosh, \UNIX.
Barry Warsawb6604b32003-01-07 22:43:25 +00001414\versionadded{2.3}
1415\end{datadesc}
1416
1417\begin{datadesc}{EX_OSFILE}
1418Exit code that means some system file did not exist, could not be
1419opened, or had some other kind of error.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001420Availability: Macintosh, \UNIX.
Barry Warsawb6604b32003-01-07 22:43:25 +00001421\versionadded{2.3}
1422\end{datadesc}
1423
1424\begin{datadesc}{EX_CANTCREAT}
1425Exit code that means a user specified output file could not be created.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001426Availability: Macintosh, \UNIX.
Barry Warsawb6604b32003-01-07 22:43:25 +00001427\versionadded{2.3}
1428\end{datadesc}
1429
1430\begin{datadesc}{EX_IOERR}
1431Exit code that means that an error occurred while doing I/O on some file.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001432Availability: Macintosh, \UNIX.
Barry Warsawb6604b32003-01-07 22:43:25 +00001433\versionadded{2.3}
1434\end{datadesc}
1435
1436\begin{datadesc}{EX_TEMPFAIL}
1437Exit code that means a temporary failure occurred. This indicates
1438something that may not really be an error, such as a network
1439connection that couldn't be made during a retryable operation.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001440Availability: Macintosh, \UNIX.
Barry Warsawb6604b32003-01-07 22:43:25 +00001441\versionadded{2.3}
1442\end{datadesc}
1443
1444\begin{datadesc}{EX_PROTOCOL}
1445Exit code that means that a protocol exchange was illegal, invalid, or
1446not understood.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001447Availability: Macintosh, \UNIX.
Barry Warsawb6604b32003-01-07 22:43:25 +00001448\versionadded{2.3}
1449\end{datadesc}
1450
1451\begin{datadesc}{EX_NOPERM}
1452Exit code that means that there were insufficient permissions to
1453perform the operation (but not intended for file system problems).
Brett Cannon7706c2d2005-02-13 22:50:04 +00001454Availability: Macintosh, \UNIX.
Barry Warsawb6604b32003-01-07 22:43:25 +00001455\versionadded{2.3}
1456\end{datadesc}
1457
1458\begin{datadesc}{EX_CONFIG}
1459Exit code that means that some kind of configuration error occurred.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001460Availability: Macintosh, \UNIX.
Barry Warsawb6604b32003-01-07 22:43:25 +00001461\versionadded{2.3}
1462\end{datadesc}
1463
1464\begin{datadesc}{EX_NOTFOUND}
1465Exit code that means something like ``an entry was not found''.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001466Availability: Macintosh, \UNIX.
Barry Warsawb6604b32003-01-07 22:43:25 +00001467\versionadded{2.3}
1468\end{datadesc}
1469
Fred Drake215fe2f1999-02-02 19:02:35 +00001470\begin{funcdesc}{fork}{}
1471Fork a child process. Return \code{0} in the child, the child's
1472process id in the parent.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001473Availability: Macintosh, \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +00001474\end{funcdesc}
1475
Fred Drakec82634c2000-06-28 17:27:48 +00001476\begin{funcdesc}{forkpty}{}
1477Fork a child process, using a new pseudo-terminal as the child's
1478controlling terminal. Return a pair of \code{(\var{pid}, \var{fd})},
1479where \var{pid} is \code{0} in the child, the new child's process id
Fred Drake6995bb62001-11-29 20:48:44 +00001480in the parent, and \var{fd} is the file descriptor of the master end
Fred Drakec82634c2000-06-28 17:27:48 +00001481of the pseudo-terminal. For a more portable approach, use the
1482\refmodule{pty} module.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001483Availability: Macintosh, Some flavors of \UNIX.
Fred Drakec82634c2000-06-28 17:27:48 +00001484\end{funcdesc}
1485
Fred Drake215fe2f1999-02-02 19:02:35 +00001486\begin{funcdesc}{kill}{pid, sig}
1487\index{process!killing}
1488\index{process!signalling}
Neal Norwitz94832202005-10-18 05:07:49 +00001489Send signal \var{sig} to the process \var{pid}. Constants for the
Fred Drake5c798312001-12-21 03:58:47 +00001490specific signals available on the host platform are defined in the
1491\refmodule{signal} module.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001492Availability: Macintosh, \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +00001493\end{funcdesc}
1494
Martin v. Löwis33e94432002-12-27 10:21:19 +00001495\begin{funcdesc}{killpg}{pgid, sig}
1496\index{process!killing}
1497\index{process!signalling}
Neal Norwitz94832202005-10-18 05:07:49 +00001498Send the signal \var{sig} to the process group \var{pgid}.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001499Availability: Macintosh, \UNIX.
Martin v. Löwis33e94432002-12-27 10:21:19 +00001500\versionadded{2.3}
1501\end{funcdesc}
1502
Fred Drake215fe2f1999-02-02 19:02:35 +00001503\begin{funcdesc}{nice}{increment}
1504Add \var{increment} to the process's ``niceness''. Return the new
1505niceness.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001506Availability: Macintosh, \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +00001507\end{funcdesc}
1508
1509\begin{funcdesc}{plock}{op}
1510Lock program segments into memory. The value of \var{op}
1511(defined in \code{<sys/lock.h>}) determines which segments are locked.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001512Availability: Macintosh, \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +00001513\end{funcdesc}
1514
Fred Drake046f4d82001-06-11 15:21:48 +00001515\begin{funcdescni}{popen}{\unspecified}
Fred Drake046f4d82001-06-11 15:21:48 +00001516Run child processes, returning opened pipes for communications. These
1517functions are described in section \ref{os-newstreams}.
1518\end{funcdescni}
1519
Fred Drake739282d2001-08-16 21:21:28 +00001520\begin{funcdesc}{spawnl}{mode, path, \moreargs}
1521\funcline{spawnle}{mode, path, \moreargs, env}
Fred Drakedb7287c2001-10-18 18:58:30 +00001522\funcline{spawnlp}{mode, file, \moreargs}
1523\funcline{spawnlpe}{mode, file, \moreargs, env}
Fred Drake739282d2001-08-16 21:21:28 +00001524\funcline{spawnv}{mode, path, args}
1525\funcline{spawnve}{mode, path, args, env}
Fred Drakedb7287c2001-10-18 18:58:30 +00001526\funcline{spawnvp}{mode, file, args}
1527\funcline{spawnvpe}{mode, file, args, env}
Thomas Wouters89f507f2006-12-13 04:49:30 +00001528Execute the program \var{path} in a new process.
1529
1530(Note that the \module{subprocess} module provides more powerful
1531facilities for spawning new processes and retrieving their results;
1532using that module is preferable to using these functions.)
1533
1534If \var{mode} is
Fred Drake739282d2001-08-16 21:21:28 +00001535\constant{P_NOWAIT}, this function returns the process ID of the new
Tim Petersb4041452001-12-06 23:37:17 +00001536process; if \var{mode} is \constant{P_WAIT}, returns the process's
Fred Drake739282d2001-08-16 21:21:28 +00001537exit code if it exits normally, or \code{-\var{signal}}, where
Fred Drake4dfb7a82002-04-01 23:30:47 +00001538\var{signal} is the signal that killed the process. On Windows, the
1539process ID will actually be the process handle, so can be used with
1540the \function{waitpid()} function.
Fred Drake215fe2f1999-02-02 19:02:35 +00001541
Fred Drake739282d2001-08-16 21:21:28 +00001542The \character{l} and \character{v} variants of the
1543\function{spawn*()} functions differ in how command-line arguments are
1544passed. The \character{l} variants are perhaps the easiest to work
1545with if the number of parameters is fixed when the code is written;
1546the individual parameters simply become additional parameters to the
1547\function{spawnl*()} functions. The \character{v} variants are good
1548when the number of parameters is variable, with the arguments being
1549passed in a list or tuple as the \var{args} parameter. In either
1550case, the arguments to the child process must start with the name of
1551the command being run.
1552
Fred Drakedb7287c2001-10-18 18:58:30 +00001553The variants which include a second \character{p} near the end
1554(\function{spawnlp()}, \function{spawnlpe()}, \function{spawnvp()},
1555and \function{spawnvpe()}) will use the \envvar{PATH} environment
1556variable to locate the program \var{file}. When the environment is
1557being replaced (using one of the \function{spawn*e()} variants,
1558discussed in the next paragraph), the new environment is used as the
1559source of the \envvar{PATH} variable. The other variants,
1560\function{spawnl()}, \function{spawnle()}, \function{spawnv()}, and
1561\function{spawnve()}, will not use the \envvar{PATH} variable to
1562locate the executable; \var{path} must contain an appropriate absolute
1563or relative path.
1564
1565For \function{spawnle()}, \function{spawnlpe()}, \function{spawnve()},
1566and \function{spawnvpe()} (note that these all end in \character{e}),
1567the \var{env} parameter must be a mapping which is used to define the
1568environment variables for the new process; the \function{spawnl()},
1569\function{spawnlp()}, \function{spawnv()}, and \function{spawnvp()}
1570all cause the new process to inherit the environment of the current
1571process.
1572
Fred Drake739282d2001-08-16 21:21:28 +00001573As an example, the following calls to \function{spawnlp()} and
1574\function{spawnvpe()} are equivalent:
1575
1576\begin{verbatim}
1577import os
1578os.spawnlp(os.P_WAIT, 'cp', 'cp', 'index.html', '/dev/null')
1579
1580L = ['cp', 'index.html', '/dev/null']
1581os.spawnvpe(os.P_WAIT, 'cp', L, os.environ)
1582\end{verbatim}
1583
Fred Drake8c8e8712001-12-20 17:24:11 +00001584Availability: \UNIX, Windows. \function{spawnlp()},
1585\function{spawnlpe()}, \function{spawnvp()} and \function{spawnvpe()}
1586are not available on Windows.
Fred Drake0b9bc202001-06-11 18:25:34 +00001587\versionadded{1.6}
Fred Drake215fe2f1999-02-02 19:02:35 +00001588\end{funcdesc}
1589
Fred Drake938a8d72001-10-09 18:07:04 +00001590\begin{datadesc}{P_NOWAIT}
Fred Drake9329e5e1999-02-16 19:40:19 +00001591\dataline{P_NOWAITO}
Fred Drake938a8d72001-10-09 18:07:04 +00001592Possible values for the \var{mode} parameter to the \function{spawn*()}
1593family of functions. If either of these values is given, the
1594\function{spawn*()} functions will return as soon as the new process
1595has been created, with the process ID as the return value.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001596Availability: Macintosh, \UNIX, Windows.
Fred Drake0b9bc202001-06-11 18:25:34 +00001597\versionadded{1.6}
Fred Drake15861b22000-02-29 05:19:38 +00001598\end{datadesc}
1599
Fred Drake938a8d72001-10-09 18:07:04 +00001600\begin{datadesc}{P_WAIT}
1601Possible value for the \var{mode} parameter to the \function{spawn*()}
1602family of functions. If this is given as \var{mode}, the
1603\function{spawn*()} functions will not return until the new process
1604has run to completion and will return the exit code of the process the
1605run is successful, or \code{-\var{signal}} if a signal kills the
1606process.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001607Availability: Macintosh, \UNIX, Windows.
Fred Drake938a8d72001-10-09 18:07:04 +00001608\versionadded{1.6}
1609\end{datadesc}
1610
1611\begin{datadesc}{P_DETACH}
1612\dataline{P_OVERLAY}
1613Possible values for the \var{mode} parameter to the
1614\function{spawn*()} family of functions. These are less portable than
1615those listed above.
1616\constant{P_DETACH} is similar to \constant{P_NOWAIT}, but the new
1617process is detached from the console of the calling process.
1618If \constant{P_OVERLAY} is used, the current process will be replaced;
1619the \function{spawn*()} function will not return.
Fred Drake215fe2f1999-02-02 19:02:35 +00001620Availability: Windows.
Fred Drake0b9bc202001-06-11 18:25:34 +00001621\versionadded{1.6}
Fred Drake215fe2f1999-02-02 19:02:35 +00001622\end{datadesc}
1623
Georg Brandlf4f44152006-02-18 22:29:33 +00001624\begin{funcdesc}{startfile}{path\optional{, operation}}
1625Start a file with its associated application.
1626
1627When \var{operation} is not specified or \code{'open'}, this acts like
Fred Drake4ce4f2e2000-09-29 04:15:19 +00001628double-clicking the file in Windows Explorer, or giving the file name
Fred Drake8ee679f2001-07-14 02:50:55 +00001629as an argument to the \program{start} command from the interactive
1630command shell: the file is opened with whatever application (if any)
1631its extension is associated.
Fred Drake4ce4f2e2000-09-29 04:15:19 +00001632
Georg Brandlf4f44152006-02-18 22:29:33 +00001633When another \var{operation} is given, it must be a ``command verb''
1634that specifies what should be done with the file.
1635Common verbs documented by Microsoft are \code{'print'} and
1636\code{'edit'} (to be used on files) as well as \code{'explore'} and
1637\code{'find'} (to be used on directories).
1638
Fred Drake4ce4f2e2000-09-29 04:15:19 +00001639\function{startfile()} returns as soon as the associated application
1640is launched. There is no option to wait for the application to close,
1641and no way to retrieve the application's exit status. The \var{path}
1642parameter is relative to the current directory. If you want to use an
1643absolute path, make sure the first character is not a slash
1644(\character{/}); the underlying Win32 \cfunction{ShellExecute()}
Fred Drake8a2adcf2001-07-23 19:20:56 +00001645function doesn't work if it is. Use the \function{os.path.normpath()}
Fred Drake4ce4f2e2000-09-29 04:15:19 +00001646function to ensure that the path is properly encoded for Win32.
1647Availability: Windows.
1648\versionadded{2.0}
Georg Brandlf4f44152006-02-18 22:29:33 +00001649\versionadded[The \var{operation} parameter]{2.5}
Fred Drake4ce4f2e2000-09-29 04:15:19 +00001650\end{funcdesc}
1651
Fred Drake215fe2f1999-02-02 19:02:35 +00001652\begin{funcdesc}{system}{command}
1653Execute the command (a string) in a subshell. This is implemented by
1654calling the Standard C function \cfunction{system()}, and has the
Fred Drakeec6baaf1999-04-21 18:13:31 +00001655same limitations. Changes to \code{posix.environ}, \code{sys.stdin},
Fred Drake215fe2f1999-02-02 19:02:35 +00001656etc.\ are not reflected in the environment of the executed command.
Tim Petersdbaf04e2003-05-20 16:15:58 +00001657
Fred Drake15eac1f2003-05-20 16:21:51 +00001658On \UNIX, the return value is the exit status of the process encoded in the
Tim Petersdbaf04e2003-05-20 16:15:58 +00001659format specified for \function{wait()}. Note that \POSIX{} does not
1660specify the meaning of the return value of the C \cfunction{system()}
1661function, so the return value of the Python function is system-dependent.
1662
Fred Drake15eac1f2003-05-20 16:21:51 +00001663On Windows, the return value is that returned by the system shell after
Tim Petersdbaf04e2003-05-20 16:15:58 +00001664running \var{command}, given by the Windows environment variable
Fred Drake15eac1f2003-05-20 16:21:51 +00001665\envvar{COMSPEC}: on \program{command.com} systems (Windows 95, 98 and ME)
1666this is always \code{0}; on \program{cmd.exe} systems (Windows NT, 2000
Tim Petersdbaf04e2003-05-20 16:15:58 +00001667and XP) this is the exit status of the command run; on systems using
1668a non-native shell, consult your shell documentation.
1669
Brett Cannon7706c2d2005-02-13 22:50:04 +00001670Availability: Macintosh, \UNIX, Windows.
Thomas Wouters89f507f2006-12-13 04:49:30 +00001671
1672The \module{subprocess} module provides more powerful facilities for
1673spawning new processes and retrieving their results; using that module
1674is preferable to using this function.
Fred Drake215fe2f1999-02-02 19:02:35 +00001675\end{funcdesc}
1676
1677\begin{funcdesc}{times}{}
Fred Drake8ee679f2001-07-14 02:50:55 +00001678Return a 5-tuple of floating point numbers indicating accumulated
1679(processor or other)
Fred Drake215fe2f1999-02-02 19:02:35 +00001680times, in seconds. The items are: user time, system time, children's
1681user time, children's system time, and elapsed real time since a fixed
Fred Drakeec6baaf1999-04-21 18:13:31 +00001682point in the past, in that order. See the \UNIX{} manual page
1683\manpage{times}{2} or the corresponding Windows Platform API
1684documentation.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001685Availability: Macintosh, \UNIX, Windows.
Fred Drake215fe2f1999-02-02 19:02:35 +00001686\end{funcdesc}
1687
1688\begin{funcdesc}{wait}{}
1689Wait for completion of a child process, and return a tuple containing
1690its pid and exit status indication: a 16-bit number, whose low byte is
1691the signal number that killed the process, and whose high byte is the
1692exit status (if the signal number is zero); the high bit of the low
1693byte is set if a core file was produced.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001694Availability: Macintosh, \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +00001695\end{funcdesc}
1696
1697\begin{funcdesc}{waitpid}{pid, options}
Fred Drake1f89e2a2002-05-10 12:37:56 +00001698The details of this function differ on \UNIX{} and Windows.
Tim Petersab034fa2002-02-01 11:27:43 +00001699
1700On \UNIX:
Fred Drake31e5e371999-08-13 13:36:33 +00001701Wait for completion of a child process given by process id \var{pid},
1702and return a tuple containing its process id and exit status
1703indication (encoded as for \function{wait()}). The semantics of the
1704call are affected by the value of the integer \var{options}, which
1705should be \code{0} for normal operation.
Fred Drake31e5e371999-08-13 13:36:33 +00001706
1707If \var{pid} is greater than \code{0}, \function{waitpid()} requests
1708status information for that specific process. If \var{pid} is
1709\code{0}, the request is for the status of any child in the process
1710group of the current process. If \var{pid} is \code{-1}, the request
1711pertains to any child of the current process. If \var{pid} is less
1712than \code{-1}, status is requested for any process in the process
1713group \code{-\var{pid}} (the absolute value of \var{pid}).
Tim Petersab034fa2002-02-01 11:27:43 +00001714
1715On Windows:
Fred Drake4dfb7a82002-04-01 23:30:47 +00001716Wait for completion of a process given by process handle \var{pid},
Tim Petersab034fa2002-02-01 11:27:43 +00001717and return a tuple containing \var{pid},
1718and its exit status shifted left by 8 bits (shifting makes cross-platform
1719use of the function easier).
1720A \var{pid} less than or equal to \code{0} has no special meaning on
1721Windows, and raises an exception.
1722The value of integer \var{options} has no effect.
1723\var{pid} can refer to any process whose id is known, not necessarily a
1724child process.
1725The \function{spawn()} functions called with \constant{P_NOWAIT}
Fred Drake4dfb7a82002-04-01 23:30:47 +00001726return suitable process handles.
Fred Drake215fe2f1999-02-02 19:02:35 +00001727\end{funcdesc}
1728
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001729\begin{funcdesc}{wait3}{\optional{options}}
1730Similar to \function{waitpid()}, except no process id argument is given and
1731a 3-element tuple containing the child's process id, exit status indication,
1732and resource usage information is returned. Refer to
1733\module{resource}.\function{getrusage()}
1734for details on resource usage information. The option argument is the same
1735as that provided to \function{waitpid()} and \function{wait4()}.
1736Availability: \UNIX.
1737\versionadded{2.5}
1738\end{funcdesc}
1739
1740\begin{funcdesc}{wait4}{pid, options}
1741Similar to \function{waitpid()}, except a 3-element tuple, containing the
1742child's process id, exit status indication, and resource usage information
1743is returned. Refer to \module{resource}.\function{getrusage()} for details
1744on resource usage information. The arguments to \function{wait4()} are
1745the same as those provided to \function{waitpid()}.
1746Availability: \UNIX.
1747\versionadded{2.5}
1748\end{funcdesc}
1749
Fred Drake215fe2f1999-02-02 19:02:35 +00001750\begin{datadesc}{WNOHANG}
Georg Brandl03dbb4f2005-06-25 19:55:04 +00001751The option for \function{waitpid()} to return immediately if no child
1752process status is available immediately. The function returns
1753\code{(0, 0)} in this case.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001754Availability: Macintosh, \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +00001755\end{datadesc}
1756
Fred Drake106c1a02002-04-23 15:58:02 +00001757\begin{datadesc}{WCONTINUED}
1758This option causes child processes to be reported if they have been
1759continued from a job control stop since their status was last
1760reported.
1761Availability: Some \UNIX{} systems.
1762\versionadded{2.3}
1763\end{datadesc}
1764
1765\begin{datadesc}{WUNTRACED}
1766This option causes child processes to be reported if they have been
1767stopped but their current state has not been reported since they were
1768stopped.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001769Availability: Macintosh, \UNIX.
Fred Drake106c1a02002-04-23 15:58:02 +00001770\versionadded{2.3}
1771\end{datadesc}
1772
Fred Drake38e5d272000-04-03 20:13:55 +00001773The following functions take a process status code as returned by
1774\function{system()}, \function{wait()}, or \function{waitpid()} as a
1775parameter. They may be used to determine the disposition of a
1776process.
Fred Drake215fe2f1999-02-02 19:02:35 +00001777
Fred Drake106c1a02002-04-23 15:58:02 +00001778\begin{funcdesc}{WCOREDUMP}{status}
1779Returns \code{True} if a core dump was generated for the process,
1780otherwise it returns \code{False}.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001781Availability: Macintosh, \UNIX.
Fred Drake106c1a02002-04-23 15:58:02 +00001782\versionadded{2.3}
1783\end{funcdesc}
1784
1785\begin{funcdesc}{WIFCONTINUED}{status}
1786Returns \code{True} if the process has been continued from a job
1787control stop, otherwise it returns \code{False}.
1788Availability: \UNIX.
1789\versionadded{2.3}
1790\end{funcdesc}
1791
Fred Drake215fe2f1999-02-02 19:02:35 +00001792\begin{funcdesc}{WIFSTOPPED}{status}
Fred Drake106c1a02002-04-23 15:58:02 +00001793Returns \code{True} if the process has been stopped, otherwise it
1794returns \code{False}.
Fred Drakec37b65e2001-11-28 07:26:15 +00001795Availability: \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +00001796\end{funcdesc}
1797
1798\begin{funcdesc}{WIFSIGNALED}{status}
Fred Drake106c1a02002-04-23 15:58:02 +00001799Returns \code{True} if the process exited due to a signal, otherwise
1800it returns \code{False}.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001801Availability: Macintosh, \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +00001802\end{funcdesc}
1803
1804\begin{funcdesc}{WIFEXITED}{status}
Fred Drake106c1a02002-04-23 15:58:02 +00001805Returns \code{True} if the process exited using the \manpage{exit}{2}
1806system call, otherwise it returns \code{False}.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001807Availability: Macintosh, \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +00001808\end{funcdesc}
1809
1810\begin{funcdesc}{WEXITSTATUS}{status}
1811If \code{WIFEXITED(\var{status})} is true, return the integer
Tim Petersab034fa2002-02-01 11:27:43 +00001812parameter to the \manpage{exit}{2} system call. Otherwise, the return
Fred Drake215fe2f1999-02-02 19:02:35 +00001813value is meaningless.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001814Availability: Macintosh, \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +00001815\end{funcdesc}
1816
1817\begin{funcdesc}{WSTOPSIG}{status}
Fred Drake35c3ffd1999-03-04 14:08:10 +00001818Return the signal which caused the process to stop.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001819Availability: Macintosh, \UNIX.
Fred Drake35c3ffd1999-03-04 14:08:10 +00001820\end{funcdesc}
1821
1822\begin{funcdesc}{WTERMSIG}{status}
Fred Drake215fe2f1999-02-02 19:02:35 +00001823Return the signal which caused the process to exit.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001824Availability: Macintosh, \UNIX.
Fred Drake215fe2f1999-02-02 19:02:35 +00001825\end{funcdesc}
1826
1827
Thomas Woutersf8316632000-07-16 19:01:10 +00001828\subsection{Miscellaneous System Information \label{os-path}}
Fred Drake88f6ca21999-12-15 19:39:04 +00001829
1830
1831\begin{funcdesc}{confstr}{name}
1832Return string-valued system configuration values.
1833\var{name} specifies the configuration value to retrieve; it may be a
1834string which is the name of a defined system value; these names are
Raymond Hettingerb67449d2003-09-08 18:52:18 +00001835specified in a number of standards (\POSIX, \UNIX{} 95, \UNIX{} 98, and
Fred Drake88f6ca21999-12-15 19:39:04 +00001836others). Some platforms define additional names as well. The names
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001837known to the host operating system are given as the keys of the
Fred Drake88f6ca21999-12-15 19:39:04 +00001838\code{confstr_names} dictionary. For configuration variables not
1839included in that mapping, passing an integer for \var{name} is also
1840accepted.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001841Availability: Macintosh, \UNIX.
Fred Drake88f6ca21999-12-15 19:39:04 +00001842
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001843If the configuration value specified by \var{name} isn't defined,
1844\code{None} is returned.
Fred Drake88f6ca21999-12-15 19:39:04 +00001845
1846If \var{name} is a string and is not known, \exception{ValueError} is
1847raised. If a specific value for \var{name} is not supported by the
1848host system, even if it is included in \code{confstr_names}, an
1849\exception{OSError} is raised with \constant{errno.EINVAL} for the
1850error number.
1851\end{funcdesc}
1852
1853\begin{datadesc}{confstr_names}
1854Dictionary mapping names accepted by \function{confstr()} to the
1855integer values defined for those names by the host operating system.
1856This can be used to determine the set of names known to the system.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001857Availability: Macintosh, \UNIX.
Fred Drake88f6ca21999-12-15 19:39:04 +00001858\end{datadesc}
1859
Martin v. Löwis438b5342002-12-27 10:16:42 +00001860\begin{funcdesc}{getloadavg}{}
1861Return the number of processes in the system run queue averaged over
Georg Brandl4865e4a2006-01-22 19:34:59 +00001862the last 1, 5, and 15 minutes or raises \exception{OSError} if the load
1863average was unobtainable.
Martin v. Löwis438b5342002-12-27 10:16:42 +00001864
1865\versionadded{2.3}
1866\end{funcdesc}
1867
Fred Drake88f6ca21999-12-15 19:39:04 +00001868\begin{funcdesc}{sysconf}{name}
1869Return integer-valued system configuration values.
1870If the configuration value specified by \var{name} isn't defined,
1871\code{-1} is returned. The comments regarding the \var{name}
1872parameter for \function{confstr()} apply here as well; the dictionary
1873that provides information on the known names is given by
1874\code{sysconf_names}.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001875Availability: Macintosh, \UNIX.
Fred Drake88f6ca21999-12-15 19:39:04 +00001876\end{funcdesc}
1877
1878\begin{datadesc}{sysconf_names}
1879Dictionary mapping names accepted by \function{sysconf()} to the
1880integer values defined for those names by the host operating system.
1881This can be used to determine the set of names known to the system.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001882Availability: Macintosh, \UNIX.
Fred Drake88f6ca21999-12-15 19:39:04 +00001883\end{datadesc}
1884
Fred Drake215fe2f1999-02-02 19:02:35 +00001885
1886The follow data values are used to support path manipulation
1887operations. These are defined for all platforms.
1888
1889Higher-level operations on pathnames are defined in the
1890\refmodule{os.path} module.
1891
1892
Guido van Rossum5fdeeea1994-01-02 01:22:07 +00001893\begin{datadesc}{curdir}
Fred Drake8ee679f2001-07-14 02:50:55 +00001894The constant string used by the operating system to refer to the current
1895directory.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001896For example: \code{'.'} for \POSIX{} or \code{':'} for Mac OS 9.
Skip Montanaro117910d2003-02-14 19:35:31 +00001897Also available via \module{os.path}.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +00001898\end{datadesc}
1899
1900\begin{datadesc}{pardir}
Fred Drake8ee679f2001-07-14 02:50:55 +00001901The constant string used by the operating system to refer to the parent
1902directory.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001903For example: \code{'..'} for \POSIX{} or \code{'::'} for Mac OS 9.
Skip Montanaro117910d2003-02-14 19:35:31 +00001904Also available via \module{os.path}.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +00001905\end{datadesc}
1906
1907\begin{datadesc}{sep}
Fred Drake8ee679f2001-07-14 02:50:55 +00001908The character used by the operating system to separate pathname components,
Brett Cannon7706c2d2005-02-13 22:50:04 +00001909for example, \character{/} for \POSIX{} or \character{:} for
1910Mac OS 9. Note that knowing this is not sufficient to be able to
Fred Drake907e76b2001-07-06 20:30:11 +00001911parse or concatenate pathnames --- use \function{os.path.split()} and
Fred Drake1a3c2a01998-08-06 15:18:23 +00001912\function{os.path.join()} --- but it is occasionally useful.
Skip Montanaro117910d2003-02-14 19:35:31 +00001913Also available via \module{os.path}.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +00001914\end{datadesc}
1915
Guido van Rossumb2afc811997-08-29 22:37:44 +00001916\begin{datadesc}{altsep}
Fred Drake8ee679f2001-07-14 02:50:55 +00001917An alternative character used by the operating system to separate pathname
1918components, or \code{None} if only one separator character exists. This is
Martin v. Löwis36a4d8c2002-10-10 18:24:54 +00001919set to \character{/} on Windows systems where \code{sep} is a
Fred Drake8ee679f2001-07-14 02:50:55 +00001920backslash.
Skip Montanaro117910d2003-02-14 19:35:31 +00001921Also available via \module{os.path}.
Guido van Rossumb2afc811997-08-29 22:37:44 +00001922\end{datadesc}
1923
Skip Montanaro47e46e22003-02-14 05:45:31 +00001924\begin{datadesc}{extsep}
Fred Drake002a5de2003-02-14 06:39:37 +00001925The character which separates the base filename from the extension;
1926for example, the \character{.} in \file{os.py}.
Skip Montanaro117910d2003-02-14 19:35:31 +00001927Also available via \module{os.path}.
Fred Drake002a5de2003-02-14 06:39:37 +00001928\versionadded{2.2}
Skip Montanaro47e46e22003-02-14 05:45:31 +00001929\end{datadesc}
1930
Guido van Rossum470be141995-03-17 16:07:09 +00001931\begin{datadesc}{pathsep}
Fred Drake8ee679f2001-07-14 02:50:55 +00001932The character conventionally used by the operating system to separate
Walter Dörwald3fa932f2004-12-15 23:44:18 +00001933search path components (as in \envvar{PATH}), such as \character{:} for
Martin v. Löwis36a4d8c2002-10-10 18:24:54 +00001934\POSIX{} or \character{;} for Windows.
Skip Montanaro117910d2003-02-14 19:35:31 +00001935Also available via \module{os.path}.
Guido van Rossum9c59ce91998-06-30 15:54:27 +00001936\end{datadesc}
1937
Guido van Rossum470be141995-03-17 16:07:09 +00001938\begin{datadesc}{defpath}
Fred Drake6995bb62001-11-29 20:48:44 +00001939The default search path used by \function{exec*p*()} and
1940\function{spawn*p*()} if the environment doesn't have a \code{'PATH'}
1941key.
Skip Montanaro117910d2003-02-14 19:35:31 +00001942Also available via \module{os.path}.
Guido van Rossum470be141995-03-17 16:07:09 +00001943\end{datadesc}
1944
Fred Drake215fe2f1999-02-02 19:02:35 +00001945\begin{datadesc}{linesep}
1946The string used to separate (or, rather, terminate) lines on the
Guido van Rossum360e4b82007-05-14 22:51:27 +00001947current platform. This may be a single character, such as
1948\code{'\e n'} for \POSIX{} or \code{'\e r'} for Mac OS, or multiple
1949characters, for example, \code{'\e r\e n'} for Windows.
1950Do not use \var{os.linesep} as a line terminator when writing files
1951opened in text mode (the default); use a single \code{'\e n'} instead,
1952on all platforms.
Fred Drake215fe2f1999-02-02 19:02:35 +00001953\end{datadesc}
Martin v. Löwisbdec50f2004-06-08 08:29:33 +00001954
1955\begin{datadesc}{devnull}
1956The file path of the null device.
Brett Cannon7706c2d2005-02-13 22:50:04 +00001957For example: \code{'/dev/null'} for \POSIX{} or \code{'Dev:Nul'} for
1958Mac OS 9.
Martin v. Löwisbdec50f2004-06-08 08:29:33 +00001959Also available via \module{os.path}.
1960\versionadded{2.4}
1961\end{datadesc}
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00001962
1963
1964\subsection{Miscellaneous Functions \label{os-miscfunc}}
1965
1966\begin{funcdesc}{urandom}{n}
1967Return a string of \var{n} random bytes suitable for cryptographic use.
1968
Tim Peters2cf5e192004-11-04 21:27:48 +00001969This function returns random bytes from an OS-specific
1970randomness source. The returned data should be unpredictable enough for
1971cryptographic applications, though its exact quality depends on the OS
1972implementation. On a UNIX-like system this will query /dev/urandom, and
1973on Windows it will use CryptGenRandom. If a randomness source is not
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00001974found, \exception{NotImplementedError} will be raised.
1975\versionadded{2.4}
1976\end{funcdesc}
1977
1978
1979
1980