blob: c8e47fcd73ec378dea85a141620303f85cdd83b4 [file] [log] [blame]
Georg Brandl8ec7f652007-08-15 14:28:01 +00001:mod:`os` --- Miscellaneous operating system interfaces
2=======================================================
3
4.. module:: os
5 :synopsis: Miscellaneous operating system interfaces.
6
7
Georg Brandl57fe0f22008-01-12 10:53:29 +00008This module provides a portable way of using operating system dependent
9functionality. If you just want to read or write a file see :func:`open`, if
10you want to manipulate paths, see the :mod:`os.path` module, and if you want to
11read all the lines in all the files on the command line see the :mod:`fileinput`
12module. For creating temporary files and directories see the :mod:`tempfile`
13module, and for high-level file and directory handling see the :mod:`shutil`
14module.
Georg Brandl8ec7f652007-08-15 14:28:01 +000015
Georg Brandl57fe0f22008-01-12 10:53:29 +000016The design of all built-in operating system dependent modules of Python is such
17that as long as the same functionality is available, it uses the same interface;
18for example, the function ``os.stat(path)`` returns stat information about
19*path* in the same format (which happens to have originated with the POSIX
Georg Brandl8ec7f652007-08-15 14:28:01 +000020interface).
21
22Extensions peculiar to a particular operating system are also available through
23the :mod:`os` module, but using them is of course a threat to portability!
24
Georg Brandl57fe0f22008-01-12 10:53:29 +000025.. note::
Georg Brandl8ec7f652007-08-15 14:28:01 +000026
Georg Brandl9af94982008-09-13 17:41:16 +000027 If not separately noted, all functions that claim "Availability: Unix" are
28 supported on Mac OS X, which builds on a Unix core.
29
30.. note::
31
Georg Brandl57fe0f22008-01-12 10:53:29 +000032 All functions in this module raise :exc:`OSError` in the case of invalid or
33 inaccessible file names and paths, or other arguments that have the correct
34 type, but are not accepted by the operating system.
Georg Brandl8ec7f652007-08-15 14:28:01 +000035
Georg Brandl8ec7f652007-08-15 14:28:01 +000036
37.. exception:: error
38
Georg Brandl57fe0f22008-01-12 10:53:29 +000039 An alias for the built-in :exc:`OSError` exception.
Georg Brandl8ec7f652007-08-15 14:28:01 +000040
41
42.. data:: name
43
44 The name of the operating system dependent module imported. The following names
45 have currently been registered: ``'posix'``, ``'nt'``, ``'mac'``, ``'os2'``,
46 ``'ce'``, ``'java'``, ``'riscos'``.
47
48
Georg Brandl8ec7f652007-08-15 14:28:01 +000049.. _os-procinfo:
50
51Process Parameters
52------------------
53
54These functions and data items provide information and operate on the current
55process and user.
56
57
58.. data:: environ
59
60 A mapping object representing the string environment. For example,
61 ``environ['HOME']`` is the pathname of your home directory (on some platforms),
62 and is equivalent to ``getenv("HOME")`` in C.
63
64 This mapping is captured the first time the :mod:`os` module is imported,
65 typically during Python startup as part of processing :file:`site.py`. Changes
66 to the environment made after this time are not reflected in ``os.environ``,
67 except for changes made by modifying ``os.environ`` directly.
68
69 If the platform supports the :func:`putenv` function, this mapping may be used
70 to modify the environment as well as query the environment. :func:`putenv` will
71 be called automatically when the mapping is modified.
72
73 .. note::
74
75 Calling :func:`putenv` directly does not change ``os.environ``, so it's better
76 to modify ``os.environ``.
77
78 .. note::
79
Georg Brandl9af94982008-09-13 17:41:16 +000080 On some platforms, including FreeBSD and Mac OS X, setting ``environ`` may
81 cause memory leaks. Refer to the system documentation for
82 :cfunc:`putenv`.
Georg Brandl8ec7f652007-08-15 14:28:01 +000083
84 If :func:`putenv` is not provided, a modified copy of this mapping may be
85 passed to the appropriate process-creation functions to cause child processes
86 to use a modified environment.
87
Georg Brandl4a212682007-09-20 17:57:59 +000088 If the platform supports the :func:`unsetenv` function, you can delete items in
Georg Brandl8ec7f652007-08-15 14:28:01 +000089 this mapping to unset environment variables. :func:`unsetenv` will be called
Georg Brandl4a212682007-09-20 17:57:59 +000090 automatically when an item is deleted from ``os.environ``, and when
Georg Brandl1a94ec22007-10-24 21:40:38 +000091 one of the :meth:`pop` or :meth:`clear` methods is called.
Georg Brandl4a212682007-09-20 17:57:59 +000092
93 .. versionchanged:: 2.6
Georg Brandl1a94ec22007-10-24 21:40:38 +000094 Also unset environment variables when calling :meth:`os.environ.clear`
95 and :meth:`os.environ.pop`.
Georg Brandl8ec7f652007-08-15 14:28:01 +000096
97
98.. function:: chdir(path)
99 fchdir(fd)
100 getcwd()
101 :noindex:
102
103 These functions are described in :ref:`os-file-dir`.
104
105
106.. function:: ctermid()
107
108 Return the filename corresponding to the controlling terminal of the process.
109 Availability: Unix.
110
111
112.. function:: getegid()
113
114 Return the effective group id of the current process. This corresponds to the
Georg Brandlf725b952008-01-05 19:44:22 +0000115 "set id" bit on the file being executed in the current process. Availability:
Georg Brandl8ec7f652007-08-15 14:28:01 +0000116 Unix.
117
118
119.. function:: geteuid()
120
121 .. index:: single: user; effective id
122
Georg Brandlf725b952008-01-05 19:44:22 +0000123 Return the current process's effective user id. Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000124
125
126.. function:: getgid()
127
128 .. index:: single: process; group
129
130 Return the real group id of the current process. Availability: Unix.
131
132
133.. function:: getgroups()
134
135 Return list of supplemental group ids associated with the current process.
136 Availability: Unix.
137
138
139.. function:: getlogin()
140
141 Return the name of the user logged in on the controlling terminal of the
142 process. For most purposes, it is more useful to use the environment variable
143 :envvar:`LOGNAME` to find out who the user is, or
144 ``pwd.getpwuid(os.getuid())[0]`` to get the login name of the currently
Georg Brandlf725b952008-01-05 19:44:22 +0000145 effective user id. Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000146
147
148.. function:: getpgid(pid)
149
150 Return the process group id of the process with process id *pid*. If *pid* is 0,
151 the process group id of the current process is returned. Availability: Unix.
152
153 .. versionadded:: 2.3
154
155
156.. function:: getpgrp()
157
158 .. index:: single: process; group
159
160 Return the id of the current process group. Availability: Unix.
161
162
163.. function:: getpid()
164
165 .. index:: single: process; id
166
167 Return the current process id. Availability: Unix, Windows.
168
169
170.. function:: getppid()
171
172 .. index:: single: process; id of parent
173
174 Return the parent's process id. Availability: Unix.
175
176
177.. function:: getuid()
178
179 .. index:: single: user; id
180
Georg Brandlf725b952008-01-05 19:44:22 +0000181 Return the current process's user id. Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000182
183
184.. function:: getenv(varname[, value])
185
186 Return the value of the environment variable *varname* if it exists, or *value*
187 if it doesn't. *value* defaults to ``None``. Availability: most flavors of
188 Unix, Windows.
189
190
191.. function:: putenv(varname, value)
192
193 .. index:: single: environment variables; setting
194
195 Set the environment variable named *varname* to the string *value*. Such
196 changes to the environment affect subprocesses started with :func:`os.system`,
197 :func:`popen` or :func:`fork` and :func:`execv`. Availability: most flavors of
198 Unix, Windows.
199
200 .. note::
201
Georg Brandl9af94982008-09-13 17:41:16 +0000202 On some platforms, including FreeBSD and Mac OS X, setting ``environ`` may
203 cause memory leaks. Refer to the system documentation for putenv.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000204
205 When :func:`putenv` is supported, assignments to items in ``os.environ`` are
206 automatically translated into corresponding calls to :func:`putenv`; however,
207 calls to :func:`putenv` don't update ``os.environ``, so it is actually
208 preferable to assign to items of ``os.environ``.
209
210
211.. function:: setegid(egid)
212
213 Set the current process's effective group id. Availability: Unix.
214
215
216.. function:: seteuid(euid)
217
218 Set the current process's effective user id. Availability: Unix.
219
220
221.. function:: setgid(gid)
222
223 Set the current process' group id. Availability: Unix.
224
225
226.. function:: setgroups(groups)
227
228 Set the list of supplemental group ids associated with the current process to
229 *groups*. *groups* must be a sequence, and each element must be an integer
Georg Brandlf725b952008-01-05 19:44:22 +0000230 identifying a group. This operation is typically available only to the superuser.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000231 Availability: Unix.
232
233 .. versionadded:: 2.2
234
235
236.. function:: setpgrp()
237
Georg Brandlf725b952008-01-05 19:44:22 +0000238 Call the system call :cfunc:`setpgrp` or :cfunc:`setpgrp(0, 0)` depending on
Georg Brandl8ec7f652007-08-15 14:28:01 +0000239 which version is implemented (if any). See the Unix manual for the semantics.
240 Availability: Unix.
241
242
243.. function:: setpgid(pid, pgrp)
244
Georg Brandlf725b952008-01-05 19:44:22 +0000245 Call the system call :cfunc:`setpgid` to set the process group id of the
Georg Brandl8ec7f652007-08-15 14:28:01 +0000246 process with id *pid* to the process group with id *pgrp*. See the Unix manual
247 for the semantics. Availability: Unix.
248
249
250.. function:: setreuid(ruid, euid)
251
252 Set the current process's real and effective user ids. Availability: Unix.
253
254
255.. function:: setregid(rgid, egid)
256
257 Set the current process's real and effective group ids. Availability: Unix.
258
259
260.. function:: getsid(pid)
261
Georg Brandlf725b952008-01-05 19:44:22 +0000262 Call the system call :cfunc:`getsid`. See the Unix manual for the semantics.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000263 Availability: Unix.
264
265 .. versionadded:: 2.4
266
267
268.. function:: setsid()
269
Georg Brandlf725b952008-01-05 19:44:22 +0000270 Call the system call :cfunc:`setsid`. See the Unix manual for the semantics.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000271 Availability: Unix.
272
273
274.. function:: setuid(uid)
275
276 .. index:: single: user; id, setting
277
Georg Brandlf725b952008-01-05 19:44:22 +0000278 Set the current process's user id. Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000279
Georg Brandl8ec7f652007-08-15 14:28:01 +0000280
Georg Brandlb19be572007-12-29 10:57:00 +0000281.. placed in this section since it relates to errno.... a little weak
Georg Brandl8ec7f652007-08-15 14:28:01 +0000282.. function:: strerror(code)
283
284 Return the error message corresponding to the error code in *code*.
Georg Brandl3fc974f2008-05-11 21:16:37 +0000285 On platforms where :cfunc:`strerror` returns ``NULL`` when given an unknown
286 error number, :exc:`ValueError` is raised. Availability: Unix, Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000287
288
289.. function:: umask(mask)
290
Georg Brandlf725b952008-01-05 19:44:22 +0000291 Set the current numeric umask and return the previous umask. Availability:
Georg Brandl8ec7f652007-08-15 14:28:01 +0000292 Unix, Windows.
293
294
295.. function:: uname()
296
297 .. index::
298 single: gethostname() (in module socket)
299 single: gethostbyaddr() (in module socket)
300
301 Return a 5-tuple containing information identifying the current operating
302 system. The tuple contains 5 strings: ``(sysname, nodename, release, version,
303 machine)``. Some systems truncate the nodename to 8 characters or to the
304 leading component; a better way to get the hostname is
305 :func:`socket.gethostname` or even
306 ``socket.gethostbyaddr(socket.gethostname())``. Availability: recent flavors of
307 Unix.
308
309
310.. function:: unsetenv(varname)
311
312 .. index:: single: environment variables; deleting
313
314 Unset (delete) the environment variable named *varname*. Such changes to the
315 environment affect subprocesses started with :func:`os.system`, :func:`popen` or
316 :func:`fork` and :func:`execv`. Availability: most flavors of Unix, Windows.
317
318 When :func:`unsetenv` is supported, deletion of items in ``os.environ`` is
319 automatically translated into a corresponding call to :func:`unsetenv`; however,
320 calls to :func:`unsetenv` don't update ``os.environ``, so it is actually
321 preferable to delete items of ``os.environ``.
322
323
324.. _os-newstreams:
325
326File Object Creation
327--------------------
328
329These functions create new file objects. (See also :func:`open`.)
330
331
332.. function:: fdopen(fd[, mode[, bufsize]])
333
334 .. index:: single: I/O control; buffering
335
336 Return an open file object connected to the file descriptor *fd*. The *mode*
337 and *bufsize* arguments have the same meaning as the corresponding arguments to
Georg Brandl9af94982008-09-13 17:41:16 +0000338 the built-in :func:`open` function. Availability: Unix, Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000339
340 .. versionchanged:: 2.3
341 When specified, the *mode* argument must now start with one of the letters
342 ``'r'``, ``'w'``, or ``'a'``, otherwise a :exc:`ValueError` is raised.
343
344 .. versionchanged:: 2.5
345 On Unix, when the *mode* argument starts with ``'a'``, the *O_APPEND* flag is
346 set on the file descriptor (which the :cfunc:`fdopen` implementation already
347 does on most platforms).
348
349
350.. function:: popen(command[, mode[, bufsize]])
351
352 Open a pipe to or from *command*. The return value is an open file object
353 connected to the pipe, which can be read or written depending on whether *mode*
354 is ``'r'`` (default) or ``'w'``. The *bufsize* argument has the same meaning as
355 the corresponding argument to the built-in :func:`open` function. The exit
356 status of the command (encoded in the format specified for :func:`wait`) is
Georg Brandl012408c2009-05-22 09:43:17 +0000357 available as the return value of the :meth:`~file.close` method of the file object,
Georg Brandl8ec7f652007-08-15 14:28:01 +0000358 except that when the exit status is zero (termination without errors), ``None``
Georg Brandl9af94982008-09-13 17:41:16 +0000359 is returned. Availability: Unix, Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000360
361 .. deprecated:: 2.6
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000362 This function is obsolete. Use the :mod:`subprocess` module. Check
Georg Brandl0ba92b22008-06-22 09:05:29 +0000363 especially the :ref:`subprocess-replacements` section.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000364
365 .. versionchanged:: 2.0
366 This function worked unreliably under Windows in earlier versions of Python.
367 This was due to the use of the :cfunc:`_popen` function from the libraries
368 provided with Windows. Newer versions of Python do not use the broken
369 implementation from the Windows libraries.
370
371
372.. function:: tmpfile()
373
374 Return a new file object opened in update mode (``w+b``). The file has no
375 directory entries associated with it and will be automatically deleted once
Georg Brandl9af94982008-09-13 17:41:16 +0000376 there are no file descriptors for the file. Availability: Unix,
Georg Brandl8ec7f652007-08-15 14:28:01 +0000377 Windows.
378
379There are a number of different :func:`popen\*` functions that provide slightly
380different ways to create subprocesses.
381
382.. deprecated:: 2.6
383 All of the :func:`popen\*` functions are obsolete. Use the :mod:`subprocess`
384 module.
385
386For each of the :func:`popen\*` variants, if *bufsize* is specified, it
387specifies the buffer size for the I/O pipes. *mode*, if provided, should be the
388string ``'b'`` or ``'t'``; on Windows this is needed to determine whether the
389file objects should be opened in binary or text mode. The default value for
390*mode* is ``'t'``.
391
392Also, for each of these variants, on Unix, *cmd* may be a sequence, in which
393case arguments will be passed directly to the program without shell intervention
394(as with :func:`os.spawnv`). If *cmd* is a string it will be passed to the shell
395(as with :func:`os.system`).
396
397These methods do not make it possible to retrieve the exit status from the child
398processes. The only way to control the input and output streams and also
399retrieve the return codes is to use the :mod:`subprocess` module; these are only
400available on Unix.
401
402For a discussion of possible deadlock conditions related to the use of these
403functions, see :ref:`popen2-flow-control`.
404
405
406.. function:: popen2(cmd[, mode[, bufsize]])
407
Georg Brandlf725b952008-01-05 19:44:22 +0000408 Execute *cmd* as a sub-process and return the file objects ``(child_stdin,
Georg Brandl8ec7f652007-08-15 14:28:01 +0000409 child_stdout)``.
410
411 .. deprecated:: 2.6
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000412 This function is obsolete. Use the :mod:`subprocess` module. Check
Georg Brandl0ba92b22008-06-22 09:05:29 +0000413 especially the :ref:`subprocess-replacements` section.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000414
Georg Brandl9af94982008-09-13 17:41:16 +0000415 Availability: Unix, Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000416
417 .. versionadded:: 2.0
418
419
420.. function:: popen3(cmd[, mode[, bufsize]])
421
Georg Brandlf725b952008-01-05 19:44:22 +0000422 Execute *cmd* as a sub-process and return the file objects ``(child_stdin,
Georg Brandl8ec7f652007-08-15 14:28:01 +0000423 child_stdout, child_stderr)``.
424
425 .. deprecated:: 2.6
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000426 This function is obsolete. Use the :mod:`subprocess` module. Check
Georg Brandl0ba92b22008-06-22 09:05:29 +0000427 especially the :ref:`subprocess-replacements` section.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000428
Georg Brandl9af94982008-09-13 17:41:16 +0000429 Availability: Unix, Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000430
431 .. versionadded:: 2.0
432
433
434.. function:: popen4(cmd[, mode[, bufsize]])
435
Georg Brandlf725b952008-01-05 19:44:22 +0000436 Execute *cmd* as a sub-process and return the file objects ``(child_stdin,
Georg Brandl8ec7f652007-08-15 14:28:01 +0000437 child_stdout_and_stderr)``.
438
439 .. deprecated:: 2.6
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000440 This function is obsolete. Use the :mod:`subprocess` module. Check
Georg Brandl0ba92b22008-06-22 09:05:29 +0000441 especially the :ref:`subprocess-replacements` section.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000442
Georg Brandl9af94982008-09-13 17:41:16 +0000443 Availability: Unix, Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000444
445 .. versionadded:: 2.0
446
447(Note that ``child_stdin, child_stdout, and child_stderr`` are named from the
448point of view of the child process, so *child_stdin* is the child's standard
449input.)
450
451This functionality is also available in the :mod:`popen2` module using functions
452of the same names, but the return values of those functions have a different
453order.
454
455
456.. _os-fd-ops:
457
458File Descriptor Operations
459--------------------------
460
461These functions operate on I/O streams referenced using file descriptors.
462
463File descriptors are small integers corresponding to a file that has been opened
464by the current process. For example, standard input is usually file descriptor
4650, standard output is 1, and standard error is 2. Further files opened by a
466process will then be assigned 3, 4, 5, and so forth. The name "file descriptor"
467is slightly deceptive; on Unix platforms, sockets and pipes are also referenced
468by file descriptors.
469
470
471.. function:: close(fd)
472
Georg Brandl9af94982008-09-13 17:41:16 +0000473 Close file descriptor *fd*. Availability: Unix, Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000474
475 .. note::
476
477 This function is intended for low-level I/O and must be applied to a file
Georg Brandl012408c2009-05-22 09:43:17 +0000478 descriptor as returned by :func:`os.open` or :func:`pipe`. To close a "file
Georg Brandl8ec7f652007-08-15 14:28:01 +0000479 object" returned by the built-in function :func:`open` or by :func:`popen` or
Georg Brandl012408c2009-05-22 09:43:17 +0000480 :func:`fdopen`, use its :meth:`~file.close` method.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000481
482
Georg Brandl309501a2008-01-19 20:22:13 +0000483.. function:: closerange(fd_low, fd_high)
484
485 Close all file descriptors from *fd_low* (inclusive) to *fd_high* (exclusive),
Georg Brandl9af94982008-09-13 17:41:16 +0000486 ignoring errors. Availability: Unix, Windows. Equivalent to::
Georg Brandl309501a2008-01-19 20:22:13 +0000487
488 for fd in xrange(fd_low, fd_high):
489 try:
490 os.close(fd)
491 except OSError:
492 pass
493
494 .. versionadded:: 2.6
495
496
Georg Brandl8ec7f652007-08-15 14:28:01 +0000497.. function:: dup(fd)
498
Georg Brandl9af94982008-09-13 17:41:16 +0000499 Return a duplicate of file descriptor *fd*. Availability: Unix,
Georg Brandl8ec7f652007-08-15 14:28:01 +0000500 Windows.
501
502
503.. function:: dup2(fd, fd2)
504
505 Duplicate file descriptor *fd* to *fd2*, closing the latter first if necessary.
Georg Brandl9af94982008-09-13 17:41:16 +0000506 Availability: Unix, Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000507
508
Christian Heimes36281872007-11-30 21:11:28 +0000509.. function:: fchmod(fd, mode)
510
511 Change the mode of the file given by *fd* to the numeric *mode*. See the docs
512 for :func:`chmod` for possible values of *mode*. Availability: Unix.
513
Georg Brandl81ddc1a2007-11-30 22:04:45 +0000514 .. versionadded:: 2.6
515
Christian Heimes36281872007-11-30 21:11:28 +0000516
517.. function:: fchown(fd, uid, gid)
518
519 Change the owner and group id of the file given by *fd* to the numeric *uid*
520 and *gid*. To leave one of the ids unchanged, set it to -1.
521 Availability: Unix.
522
Georg Brandl81ddc1a2007-11-30 22:04:45 +0000523 .. versionadded:: 2.6
524
Christian Heimes36281872007-11-30 21:11:28 +0000525
Georg Brandl8ec7f652007-08-15 14:28:01 +0000526.. function:: fdatasync(fd)
527
528 Force write of file with filedescriptor *fd* to disk. Does not force update of
529 metadata. Availability: Unix.
530
Benjamin Petersonecf3c622009-05-30 03:10:52 +0000531 .. note::
532 This function is not available on MacOS.
533
Georg Brandl8ec7f652007-08-15 14:28:01 +0000534
535.. function:: fpathconf(fd, name)
536
537 Return system configuration information relevant to an open file. *name*
538 specifies the configuration value to retrieve; it may be a string which is the
539 name of a defined system value; these names are specified in a number of
540 standards (POSIX.1, Unix 95, Unix 98, and others). Some platforms define
541 additional names as well. The names known to the host operating system are
542 given in the ``pathconf_names`` dictionary. For configuration variables not
543 included in that mapping, passing an integer for *name* is also accepted.
Georg Brandl9af94982008-09-13 17:41:16 +0000544 Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000545
546 If *name* is a string and is not known, :exc:`ValueError` is raised. If a
547 specific value for *name* is not supported by the host system, even if it is
548 included in ``pathconf_names``, an :exc:`OSError` is raised with
549 :const:`errno.EINVAL` for the error number.
550
551
552.. function:: fstat(fd)
553
554 Return status for file descriptor *fd*, like :func:`stat`. Availability:
Georg Brandl9af94982008-09-13 17:41:16 +0000555 Unix, Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000556
557
558.. function:: fstatvfs(fd)
559
560 Return information about the filesystem containing the file associated with file
561 descriptor *fd*, like :func:`statvfs`. Availability: Unix.
562
563
564.. function:: fsync(fd)
565
566 Force write of file with filedescriptor *fd* to disk. On Unix, this calls the
567 native :cfunc:`fsync` function; on Windows, the MS :cfunc:`_commit` function.
568
569 If you're starting with a Python file object *f*, first do ``f.flush()``, and
570 then do ``os.fsync(f.fileno())``, to ensure that all internal buffers associated
Georg Brandl9af94982008-09-13 17:41:16 +0000571 with *f* are written to disk. Availability: Unix, and Windows
Georg Brandl8ec7f652007-08-15 14:28:01 +0000572 starting in 2.2.3.
573
574
575.. function:: ftruncate(fd, length)
576
577 Truncate the file corresponding to file descriptor *fd*, so that it is at most
Georg Brandl9af94982008-09-13 17:41:16 +0000578 *length* bytes in size. Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000579
580
581.. function:: isatty(fd)
582
583 Return ``True`` if the file descriptor *fd* is open and connected to a
Georg Brandl9af94982008-09-13 17:41:16 +0000584 tty(-like) device, else ``False``. Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000585
586
587.. function:: lseek(fd, pos, how)
588
Georg Brandlf725b952008-01-05 19:44:22 +0000589 Set the current position of file descriptor *fd* to position *pos*, modified
590 by *how*: :const:`SEEK_SET` or ``0`` to set the position relative to the
591 beginning of the file; :const:`SEEK_CUR` or ``1`` to set it relative to the
592 current position; :const:`os.SEEK_END` or ``2`` to set it relative to the end of
Georg Brandl9af94982008-09-13 17:41:16 +0000593 the file. Availability: Unix, Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000594
595
596.. function:: open(file, flags[, mode])
597
598 Open the file *file* and set various flags according to *flags* and possibly its
599 mode according to *mode*. The default *mode* is ``0777`` (octal), and the
600 current umask value is first masked out. Return the file descriptor for the
Georg Brandl9af94982008-09-13 17:41:16 +0000601 newly opened file. Availability: Unix, Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000602
603 For a description of the flag and mode values, see the C run-time documentation;
604 flag constants (like :const:`O_RDONLY` and :const:`O_WRONLY`) are defined in
605 this module too (see below).
606
607 .. note::
608
Georg Brandl9fa61bb2009-07-26 14:19:57 +0000609 This function is intended for low-level I/O. For normal usage, use the
610 built-in function :func:`open`, which returns a "file object" with
611 :meth:`~file.read` and :meth:`~file.write` methods (and many more). To
612 wrap a file descriptor in a "file object", use :func:`fdopen`.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000613
614
615.. function:: openpty()
616
617 .. index:: module: pty
618
619 Open a new pseudo-terminal pair. Return a pair of file descriptors ``(master,
620 slave)`` for the pty and the tty, respectively. For a (slightly) more portable
Georg Brandl9af94982008-09-13 17:41:16 +0000621 approach, use the :mod:`pty` module. Availability: some flavors of
Georg Brandl8ec7f652007-08-15 14:28:01 +0000622 Unix.
623
624
625.. function:: pipe()
626
627 Create a pipe. Return a pair of file descriptors ``(r, w)`` usable for reading
Georg Brandl9af94982008-09-13 17:41:16 +0000628 and writing, respectively. Availability: Unix, Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000629
630
631.. function:: read(fd, n)
632
633 Read at most *n* bytes from file descriptor *fd*. Return a string containing the
634 bytes read. If the end of the file referred to by *fd* has been reached, an
Georg Brandl9af94982008-09-13 17:41:16 +0000635 empty string is returned. Availability: Unix, Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000636
637 .. note::
638
639 This function is intended for low-level I/O and must be applied to a file
Georg Brandl012408c2009-05-22 09:43:17 +0000640 descriptor as returned by :func:`os.open` or :func:`pipe`. To read a "file object"
Georg Brandl8ec7f652007-08-15 14:28:01 +0000641 returned by the built-in function :func:`open` or by :func:`popen` or
Georg Brandl012408c2009-05-22 09:43:17 +0000642 :func:`fdopen`, or :data:`sys.stdin`, use its :meth:`~file.read` or
643 :meth:`~file.readline` methods.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000644
645
646.. function:: tcgetpgrp(fd)
647
648 Return the process group associated with the terminal given by *fd* (an open
Georg Brandl012408c2009-05-22 09:43:17 +0000649 file descriptor as returned by :func:`os.open`). Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000650
651
652.. function:: tcsetpgrp(fd, pg)
653
654 Set the process group associated with the terminal given by *fd* (an open file
Georg Brandl012408c2009-05-22 09:43:17 +0000655 descriptor as returned by :func:`os.open`) to *pg*. Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000656
657
658.. function:: ttyname(fd)
659
660 Return a string which specifies the terminal device associated with
Georg Brandlbb75e4e2007-10-21 10:46:24 +0000661 file descriptor *fd*. If *fd* is not associated with a terminal device, an
Georg Brandl9af94982008-09-13 17:41:16 +0000662 exception is raised. Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000663
664
665.. function:: write(fd, str)
666
667 Write the string *str* to file descriptor *fd*. Return the number of bytes
Georg Brandl9af94982008-09-13 17:41:16 +0000668 actually written. Availability: Unix, Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000669
670 .. note::
671
672 This function is intended for low-level I/O and must be applied to a file
Georg Brandl012408c2009-05-22 09:43:17 +0000673 descriptor as returned by :func:`os.open` or :func:`pipe`. To write a "file
Georg Brandl8ec7f652007-08-15 14:28:01 +0000674 object" returned by the built-in function :func:`open` or by :func:`popen` or
Georg Brandl012408c2009-05-22 09:43:17 +0000675 :func:`fdopen`, or :data:`sys.stdout` or :data:`sys.stderr`, use its
676 :meth:`~file.write` method.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000677
Georg Brandl0c880bd2008-12-05 08:02:17 +0000678The following constants are options for the *flags* parameter to the
Georg Brandl012408c2009-05-22 09:43:17 +0000679:func:`~os.open` function. They can be combined using the bitwise OR operator
Georg Brandl0c880bd2008-12-05 08:02:17 +0000680``|``. Some of them are not available on all platforms. For descriptions of
Georg Brandle70ff4b2008-12-05 09:25:32 +0000681their availability and use, consult the :manpage:`open(2)` manual page on Unix
Doug Hellmann1d18b5b2009-09-20 20:44:13 +0000682or `the MSDN <http://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000683
684
685.. data:: O_RDONLY
686 O_WRONLY
687 O_RDWR
688 O_APPEND
689 O_CREAT
690 O_EXCL
691 O_TRUNC
692
Georg Brandl0c880bd2008-12-05 08:02:17 +0000693 These constants are available on Unix and Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000694
695
696.. data:: O_DSYNC
697 O_RSYNC
698 O_SYNC
699 O_NDELAY
700 O_NONBLOCK
701 O_NOCTTY
702 O_SHLOCK
703 O_EXLOCK
704
Georg Brandl0c880bd2008-12-05 08:02:17 +0000705 These constants are only available on Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000706
707
708.. data:: O_BINARY
Georg Brandlb67da6e2007-11-24 13:56:09 +0000709 O_NOINHERIT
Georg Brandl8ec7f652007-08-15 14:28:01 +0000710 O_SHORT_LIVED
711 O_TEMPORARY
712 O_RANDOM
713 O_SEQUENTIAL
714 O_TEXT
715
Georg Brandl0c880bd2008-12-05 08:02:17 +0000716 These constants are only available on Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000717
718
Georg Brandlae6b9f32008-05-16 13:41:26 +0000719.. data:: O_ASYNC
720 O_DIRECT
Georg Brandlb67da6e2007-11-24 13:56:09 +0000721 O_DIRECTORY
722 O_NOFOLLOW
723 O_NOATIME
724
Georg Brandl0c880bd2008-12-05 08:02:17 +0000725 These constants are GNU extensions and not present if they are not defined by
726 the C library.
Georg Brandlb67da6e2007-11-24 13:56:09 +0000727
728
Georg Brandl8ec7f652007-08-15 14:28:01 +0000729.. data:: SEEK_SET
730 SEEK_CUR
731 SEEK_END
732
733 Parameters to the :func:`lseek` function. Their values are 0, 1, and 2,
Georg Brandl9af94982008-09-13 17:41:16 +0000734 respectively. Availability: Windows, Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000735
736 .. versionadded:: 2.5
737
738
739.. _os-file-dir:
740
741Files and Directories
742---------------------
743
Georg Brandl8ec7f652007-08-15 14:28:01 +0000744.. function:: access(path, mode)
745
746 Use the real uid/gid to test for access to *path*. Note that most operations
747 will use the effective uid/gid, therefore this routine can be used in a
748 suid/sgid environment to test if the invoking user has the specified access to
749 *path*. *mode* should be :const:`F_OK` to test the existence of *path*, or it
750 can be the inclusive OR of one or more of :const:`R_OK`, :const:`W_OK`, and
751 :const:`X_OK` to test permissions. Return :const:`True` if access is allowed,
752 :const:`False` if not. See the Unix man page :manpage:`access(2)` for more
Georg Brandl9af94982008-09-13 17:41:16 +0000753 information. Availability: Unix, Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000754
755 .. note::
756
Georg Brandl9fa61bb2009-07-26 14:19:57 +0000757 Using :func:`access` to check if a user is authorized to e.g. open a file
758 before actually doing so using :func:`open` creates a security hole,
759 because the user might exploit the short time interval between checking
760 and opening the file to manipulate it.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000761
762 .. note::
763
764 I/O operations may fail even when :func:`access` indicates that they would
765 succeed, particularly for operations on network filesystems which may have
766 permissions semantics beyond the usual POSIX permission-bit model.
767
768
769.. data:: F_OK
770
771 Value to pass as the *mode* parameter of :func:`access` to test the existence of
772 *path*.
773
774
775.. data:: R_OK
776
777 Value to include in the *mode* parameter of :func:`access` to test the
778 readability of *path*.
779
780
781.. data:: W_OK
782
783 Value to include in the *mode* parameter of :func:`access` to test the
784 writability of *path*.
785
786
787.. data:: X_OK
788
789 Value to include in the *mode* parameter of :func:`access` to determine if
790 *path* can be executed.
791
792
793.. function:: chdir(path)
794
795 .. index:: single: directory; changing
796
Georg Brandl9af94982008-09-13 17:41:16 +0000797 Change the current working directory to *path*. Availability: Unix,
Georg Brandl8ec7f652007-08-15 14:28:01 +0000798 Windows.
799
800
801.. function:: fchdir(fd)
802
803 Change the current working directory to the directory represented by the file
804 descriptor *fd*. The descriptor must refer to an opened directory, not an open
805 file. Availability: Unix.
806
807 .. versionadded:: 2.3
808
809
810.. function:: getcwd()
811
812 Return a string representing the current working directory. Availability:
Georg Brandl9af94982008-09-13 17:41:16 +0000813 Unix, Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000814
815
816.. function:: getcwdu()
817
818 Return a Unicode object representing the current working directory.
Georg Brandl9af94982008-09-13 17:41:16 +0000819 Availability: Unix, Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000820
821 .. versionadded:: 2.3
822
823
824.. function:: chflags(path, flags)
825
826 Set the flags of *path* to the numeric *flags*. *flags* may take a combination
827 (bitwise OR) of the following values (as defined in the :mod:`stat` module):
828
829 * ``UF_NODUMP``
830 * ``UF_IMMUTABLE``
831 * ``UF_APPEND``
832 * ``UF_OPAQUE``
833 * ``UF_NOUNLINK``
834 * ``SF_ARCHIVED``
835 * ``SF_IMMUTABLE``
836 * ``SF_APPEND``
837 * ``SF_NOUNLINK``
838 * ``SF_SNAPSHOT``
839
Georg Brandl9af94982008-09-13 17:41:16 +0000840 Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000841
842 .. versionadded:: 2.6
843
844
845.. function:: chroot(path)
846
847 Change the root directory of the current process to *path*. Availability:
Georg Brandl9af94982008-09-13 17:41:16 +0000848 Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000849
850 .. versionadded:: 2.2
851
852
853.. function:: chmod(path, mode)
854
855 Change the mode of *path* to the numeric *mode*. *mode* may take one of the
Georg Brandlf725b952008-01-05 19:44:22 +0000856 following values (as defined in the :mod:`stat` module) or bitwise ORed
Georg Brandl8ec7f652007-08-15 14:28:01 +0000857 combinations of them:
858
859
R. David Murrayfbba7cd2009-07-02 18:19:20 +0000860 * :data:`stat.S_ISUID`
861 * :data:`stat.S_ISGID`
862 * :data:`stat.S_ENFMT`
863 * :data:`stat.S_ISVTX`
864 * :data:`stat.S_IREAD`
865 * :data:`stat.S_IWRITE`
866 * :data:`stat.S_IEXEC`
867 * :data:`stat.S_IRWXU`
868 * :data:`stat.S_IRUSR`
869 * :data:`stat.S_IWUSR`
870 * :data:`stat.S_IXUSR`
871 * :data:`stat.S_IRWXG`
872 * :data:`stat.S_IRGRP`
873 * :data:`stat.S_IWGRP`
874 * :data:`stat.S_IXGRP`
875 * :data:`stat.S_IRWXO`
876 * :data:`stat.S_IROTH`
877 * :data:`stat.S_IWOTH`
878 * :data:`stat.S_IXOTH`
Georg Brandl8ec7f652007-08-15 14:28:01 +0000879
Georg Brandl9af94982008-09-13 17:41:16 +0000880 Availability: Unix, Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000881
882 .. note::
883
884 Although Windows supports :func:`chmod`, you can only set the file's read-only
885 flag with it (via the ``stat.S_IWRITE`` and ``stat.S_IREAD``
886 constants or a corresponding integer value). All other bits are
887 ignored.
888
889
890.. function:: chown(path, uid, gid)
891
892 Change the owner and group id of *path* to the numeric *uid* and *gid*. To leave
Georg Brandl9af94982008-09-13 17:41:16 +0000893 one of the ids unchanged, set it to -1. Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000894
895
896.. function:: lchflags(path, flags)
897
898 Set the flags of *path* to the numeric *flags*, like :func:`chflags`, but do not
899 follow symbolic links. Availability: Unix.
900
901 .. versionadded:: 2.6
902
903
Georg Brandl81ddc1a2007-11-30 22:04:45 +0000904.. function:: lchmod(path, mode)
905
906 Change the mode of *path* to the numeric *mode*. If path is a symlink, this
907 affects the symlink rather than the target. See the docs for :func:`chmod`
908 for possible values of *mode*. Availability: Unix.
909
910 .. versionadded:: 2.6
911
912
Georg Brandl8ec7f652007-08-15 14:28:01 +0000913.. function:: lchown(path, uid, gid)
914
Georg Brandlf725b952008-01-05 19:44:22 +0000915 Change the owner and group id of *path* to the numeric *uid* and *gid*. This
Georg Brandl9af94982008-09-13 17:41:16 +0000916 function will not follow symbolic links. Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000917
918 .. versionadded:: 2.3
919
920
Benjamin Peterson0e928582009-03-28 19:16:10 +0000921.. function:: link(source, link_name)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000922
Benjamin Peterson0e928582009-03-28 19:16:10 +0000923 Create a hard link pointing to *source* named *link_name*. Availability:
924 Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000925
926
927.. function:: listdir(path)
928
Georg Brandl62342912008-11-24 19:56:47 +0000929 Return a list containing the names of the entries in the directory given by
930 *path*. The list is in arbitrary order. It does not include the special
931 entries ``'.'`` and ``'..'`` even if they are present in the
932 directory. Availability: Unix, Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000933
934 .. versionchanged:: 2.3
935 On Windows NT/2k/XP and Unix, if *path* is a Unicode object, the result will be
Georg Brandld933cc22009-05-16 11:21:29 +0000936 a list of Unicode objects. Undecodable filenames will still be returned as
937 string objects.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000938
939
940.. function:: lstat(path)
941
Georg Brandl03b15c62007-11-01 17:19:33 +0000942 Like :func:`stat`, but do not follow symbolic links. This is an alias for
943 :func:`stat` on platforms that do not support symbolic links, such as
944 Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000945
946
947.. function:: mkfifo(path[, mode])
948
949 Create a FIFO (a named pipe) named *path* with numeric mode *mode*. The default
950 *mode* is ``0666`` (octal). The current umask value is first masked out from
Georg Brandl9af94982008-09-13 17:41:16 +0000951 the mode. Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000952
953 FIFOs are pipes that can be accessed like regular files. FIFOs exist until they
954 are deleted (for example with :func:`os.unlink`). Generally, FIFOs are used as
955 rendezvous between "client" and "server" type processes: the server opens the
956 FIFO for reading, and the client opens it for writing. Note that :func:`mkfifo`
957 doesn't open the FIFO --- it just creates the rendezvous point.
958
959
960.. function:: mknod(filename[, mode=0600, device])
961
962 Create a filesystem node (file, device special file or named pipe) named
963 *filename*. *mode* specifies both the permissions to use and the type of node to
964 be created, being combined (bitwise OR) with one of ``stat.S_IFREG``,
965 ``stat.S_IFCHR``, ``stat.S_IFBLK``,
966 and ``stat.S_IFIFO`` (those constants are available in :mod:`stat`).
967 For ``stat.S_IFCHR`` and
968 ``stat.S_IFBLK``, *device* defines the newly created device special file (probably using
969 :func:`os.makedev`), otherwise it is ignored.
970
971 .. versionadded:: 2.3
972
973
974.. function:: major(device)
975
Georg Brandlf725b952008-01-05 19:44:22 +0000976 Extract the device major number from a raw device number (usually the
Georg Brandl8ec7f652007-08-15 14:28:01 +0000977 :attr:`st_dev` or :attr:`st_rdev` field from :ctype:`stat`).
978
979 .. versionadded:: 2.3
980
981
982.. function:: minor(device)
983
Georg Brandlf725b952008-01-05 19:44:22 +0000984 Extract the device minor number from a raw device number (usually the
Georg Brandl8ec7f652007-08-15 14:28:01 +0000985 :attr:`st_dev` or :attr:`st_rdev` field from :ctype:`stat`).
986
987 .. versionadded:: 2.3
988
989
990.. function:: makedev(major, minor)
991
Georg Brandlf725b952008-01-05 19:44:22 +0000992 Compose a raw device number from the major and minor device numbers.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000993
994 .. versionadded:: 2.3
995
996
997.. function:: mkdir(path[, mode])
998
999 Create a directory named *path* with numeric mode *mode*. The default *mode* is
1000 ``0777`` (octal). On some systems, *mode* is ignored. Where it is used, the
Georg Brandl9af94982008-09-13 17:41:16 +00001001 current umask value is first masked out. Availability: Unix, Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001002
Mark Summerfieldac3d4292007-11-02 08:24:59 +00001003 It is also possible to create temporary directories; see the
1004 :mod:`tempfile` module's :func:`tempfile.mkdtemp` function.
1005
Georg Brandl8ec7f652007-08-15 14:28:01 +00001006
1007.. function:: makedirs(path[, mode])
1008
1009 .. index::
1010 single: directory; creating
1011 single: UNC paths; and os.makedirs()
1012
1013 Recursive directory creation function. Like :func:`mkdir`, but makes all
1014 intermediate-level directories needed to contain the leaf directory. Throws an
1015 :exc:`error` exception if the leaf directory already exists or cannot be
1016 created. The default *mode* is ``0777`` (octal). On some systems, *mode* is
1017 ignored. Where it is used, the current umask value is first masked out.
1018
1019 .. note::
1020
1021 :func:`makedirs` will become confused if the path elements to create include
Georg Brandlf725b952008-01-05 19:44:22 +00001022 :data:`os.pardir`.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001023
1024 .. versionadded:: 1.5.2
1025
1026 .. versionchanged:: 2.3
1027 This function now handles UNC paths correctly.
1028
1029
1030.. function:: pathconf(path, name)
1031
1032 Return system configuration information relevant to a named file. *name*
1033 specifies the configuration value to retrieve; it may be a string which is the
1034 name of a defined system value; these names are specified in a number of
1035 standards (POSIX.1, Unix 95, Unix 98, and others). Some platforms define
1036 additional names as well. The names known to the host operating system are
1037 given in the ``pathconf_names`` dictionary. For configuration variables not
1038 included in that mapping, passing an integer for *name* is also accepted.
Georg Brandl9af94982008-09-13 17:41:16 +00001039 Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001040
1041 If *name* is a string and is not known, :exc:`ValueError` is raised. If a
1042 specific value for *name* is not supported by the host system, even if it is
1043 included in ``pathconf_names``, an :exc:`OSError` is raised with
1044 :const:`errno.EINVAL` for the error number.
1045
1046
1047.. data:: pathconf_names
1048
1049 Dictionary mapping names accepted by :func:`pathconf` and :func:`fpathconf` to
1050 the integer values defined for those names by the host operating system. This
1051 can be used to determine the set of names known to the system. Availability:
Georg Brandl9af94982008-09-13 17:41:16 +00001052 Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001053
1054
1055.. function:: readlink(path)
1056
1057 Return a string representing the path to which the symbolic link points. The
1058 result may be either an absolute or relative pathname; if it is relative, it may
1059 be converted to an absolute pathname using ``os.path.join(os.path.dirname(path),
1060 result)``.
1061
1062 .. versionchanged:: 2.6
1063 If the *path* is a Unicode object the result will also be a Unicode object.
1064
Georg Brandl9af94982008-09-13 17:41:16 +00001065 Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001066
1067
1068.. function:: remove(path)
1069
Georg Brandl75439972009-08-24 17:24:27 +00001070 Remove (delete) the file *path*. If *path* is a directory, :exc:`OSError` is
1071 raised; see :func:`rmdir` below to remove a directory. This is identical to
1072 the :func:`unlink` function documented below. On Windows, attempting to
1073 remove a file that is in use causes an exception to be raised; on Unix, the
1074 directory entry is removed but the storage allocated to the file is not made
1075 available until the original file is no longer in use. Availability: Unix,
Georg Brandl8ec7f652007-08-15 14:28:01 +00001076 Windows.
1077
1078
1079.. function:: removedirs(path)
1080
1081 .. index:: single: directory; deleting
1082
Georg Brandlf725b952008-01-05 19:44:22 +00001083 Remove directories recursively. Works like :func:`rmdir` except that, if the
Georg Brandl8ec7f652007-08-15 14:28:01 +00001084 leaf directory is successfully removed, :func:`removedirs` tries to
1085 successively remove every parent directory mentioned in *path* until an error
1086 is raised (which is ignored, because it generally means that a parent directory
1087 is not empty). For example, ``os.removedirs('foo/bar/baz')`` will first remove
1088 the directory ``'foo/bar/baz'``, and then remove ``'foo/bar'`` and ``'foo'`` if
1089 they are empty. Raises :exc:`OSError` if the leaf directory could not be
1090 successfully removed.
1091
1092 .. versionadded:: 1.5.2
1093
1094
1095.. function:: rename(src, dst)
1096
1097 Rename the file or directory *src* to *dst*. If *dst* is a directory,
1098 :exc:`OSError` will be raised. On Unix, if *dst* exists and is a file, it will
Georg Brandlf725b952008-01-05 19:44:22 +00001099 be replaced silently if the user has permission. The operation may fail on some
Georg Brandl8ec7f652007-08-15 14:28:01 +00001100 Unix flavors if *src* and *dst* are on different filesystems. If successful,
1101 the renaming will be an atomic operation (this is a POSIX requirement). On
1102 Windows, if *dst* already exists, :exc:`OSError` will be raised even if it is a
1103 file; there may be no way to implement an atomic rename when *dst* names an
Georg Brandl9af94982008-09-13 17:41:16 +00001104 existing file. Availability: Unix, Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001105
1106
1107.. function:: renames(old, new)
1108
1109 Recursive directory or file renaming function. Works like :func:`rename`, except
1110 creation of any intermediate directories needed to make the new pathname good is
1111 attempted first. After the rename, directories corresponding to rightmost path
1112 segments of the old name will be pruned away using :func:`removedirs`.
1113
1114 .. versionadded:: 1.5.2
1115
1116 .. note::
1117
1118 This function can fail with the new directory structure made if you lack
1119 permissions needed to remove the leaf directory or file.
1120
1121
1122.. function:: rmdir(path)
1123
Georg Brandl1b2695a2009-08-24 17:48:40 +00001124 Remove (delete) the directory *path*. Only works when the directory is
1125 empty, otherwise, :exc:`OSError` is raised. In order to remove whole
1126 directory trees, :func:`shutil.rmtree` can be used. Availability: Unix,
1127 Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001128
1129
1130.. function:: stat(path)
1131
1132 Perform a :cfunc:`stat` system call on the given path. The return value is an
1133 object whose attributes correspond to the members of the :ctype:`stat`
1134 structure, namely: :attr:`st_mode` (protection bits), :attr:`st_ino` (inode
1135 number), :attr:`st_dev` (device), :attr:`st_nlink` (number of hard links),
Georg Brandlf725b952008-01-05 19:44:22 +00001136 :attr:`st_uid` (user id of owner), :attr:`st_gid` (group id of owner),
Georg Brandl8ec7f652007-08-15 14:28:01 +00001137 :attr:`st_size` (size of file, in bytes), :attr:`st_atime` (time of most recent
1138 access), :attr:`st_mtime` (time of most recent content modification),
1139 :attr:`st_ctime` (platform dependent; time of most recent metadata change on
1140 Unix, or the time of creation on Windows)::
1141
1142 >>> import os
1143 >>> statinfo = os.stat('somefile.txt')
1144 >>> statinfo
1145 (33188, 422511L, 769L, 1, 1032, 100, 926L, 1105022698,1105022732, 1105022732)
1146 >>> statinfo.st_size
1147 926L
1148 >>>
1149
1150 .. versionchanged:: 2.3
Georg Brandlf725b952008-01-05 19:44:22 +00001151 If :func:`stat_float_times` returns ``True``, the time values are floats, measuring
Georg Brandl8ec7f652007-08-15 14:28:01 +00001152 seconds. Fractions of a second may be reported if the system supports that. On
1153 Mac OS, the times are always floats. See :func:`stat_float_times` for further
1154 discussion.
1155
1156 On some Unix systems (such as Linux), the following attributes may also be
1157 available: :attr:`st_blocks` (number of blocks allocated for file),
1158 :attr:`st_blksize` (filesystem blocksize), :attr:`st_rdev` (type of device if an
1159 inode device). :attr:`st_flags` (user defined flags for file).
1160
1161 On other Unix systems (such as FreeBSD), the following attributes may be
1162 available (but may be only filled out if root tries to use them): :attr:`st_gen`
1163 (file generation number), :attr:`st_birthtime` (time of file creation).
1164
1165 On Mac OS systems, the following attributes may also be available:
1166 :attr:`st_rsize`, :attr:`st_creator`, :attr:`st_type`.
1167
1168 On RISCOS systems, the following attributes are also available: :attr:`st_ftype`
1169 (file type), :attr:`st_attrs` (attributes), :attr:`st_obtype` (object type).
1170
1171 .. index:: module: stat
1172
1173 For backward compatibility, the return value of :func:`stat` is also accessible
1174 as a tuple of at least 10 integers giving the most important (and portable)
1175 members of the :ctype:`stat` structure, in the order :attr:`st_mode`,
1176 :attr:`st_ino`, :attr:`st_dev`, :attr:`st_nlink`, :attr:`st_uid`,
1177 :attr:`st_gid`, :attr:`st_size`, :attr:`st_atime`, :attr:`st_mtime`,
1178 :attr:`st_ctime`. More items may be added at the end by some implementations.
1179 The standard module :mod:`stat` defines functions and constants that are useful
1180 for extracting information from a :ctype:`stat` structure. (On Windows, some
1181 items are filled with dummy values.)
1182
1183 .. note::
1184
1185 The exact meaning and resolution of the :attr:`st_atime`, :attr:`st_mtime`, and
1186 :attr:`st_ctime` members depends on the operating system and the file system.
1187 For example, on Windows systems using the FAT or FAT32 file systems,
1188 :attr:`st_mtime` has 2-second resolution, and :attr:`st_atime` has only 1-day
1189 resolution. See your operating system documentation for details.
1190
Georg Brandl9af94982008-09-13 17:41:16 +00001191 Availability: Unix, Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001192
1193 .. versionchanged:: 2.2
1194 Added access to values as attributes of the returned object.
1195
1196 .. versionchanged:: 2.5
Georg Brandlf725b952008-01-05 19:44:22 +00001197 Added :attr:`st_gen` and :attr:`st_birthtime`.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001198
1199
1200.. function:: stat_float_times([newvalue])
1201
1202 Determine whether :class:`stat_result` represents time stamps as float objects.
1203 If *newvalue* is ``True``, future calls to :func:`stat` return floats, if it is
1204 ``False``, future calls return ints. If *newvalue* is omitted, return the
1205 current setting.
1206
1207 For compatibility with older Python versions, accessing :class:`stat_result` as
1208 a tuple always returns integers.
1209
1210 .. versionchanged:: 2.5
1211 Python now returns float values by default. Applications which do not work
1212 correctly with floating point time stamps can use this function to restore the
1213 old behaviour.
1214
1215 The resolution of the timestamps (that is the smallest possible fraction)
1216 depends on the system. Some systems only support second resolution; on these
1217 systems, the fraction will always be zero.
1218
1219 It is recommended that this setting is only changed at program startup time in
1220 the *__main__* module; libraries should never change this setting. If an
1221 application uses a library that works incorrectly if floating point time stamps
1222 are processed, this application should turn the feature off until the library
1223 has been corrected.
1224
1225
1226.. function:: statvfs(path)
1227
1228 Perform a :cfunc:`statvfs` system call on the given path. The return value is
1229 an object whose attributes describe the filesystem on the given path, and
1230 correspond to the members of the :ctype:`statvfs` structure, namely:
1231 :attr:`f_bsize`, :attr:`f_frsize`, :attr:`f_blocks`, :attr:`f_bfree`,
1232 :attr:`f_bavail`, :attr:`f_files`, :attr:`f_ffree`, :attr:`f_favail`,
1233 :attr:`f_flag`, :attr:`f_namemax`. Availability: Unix.
1234
1235 .. index:: module: statvfs
1236
1237 For backward compatibility, the return value is also accessible as a tuple whose
1238 values correspond to the attributes, in the order given above. The standard
1239 module :mod:`statvfs` defines constants that are useful for extracting
1240 information from a :ctype:`statvfs` structure when accessing it as a sequence;
1241 this remains useful when writing code that needs to work with versions of Python
1242 that don't support accessing the fields as attributes.
1243
1244 .. versionchanged:: 2.2
1245 Added access to values as attributes of the returned object.
1246
1247
Benjamin Peterson0e928582009-03-28 19:16:10 +00001248.. function:: symlink(source, link_name)
Georg Brandl8ec7f652007-08-15 14:28:01 +00001249
Benjamin Peterson0e928582009-03-28 19:16:10 +00001250 Create a symbolic link pointing to *source* named *link_name*. Availability:
1251 Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001252
1253
1254.. function:: tempnam([dir[, prefix]])
1255
1256 Return a unique path name that is reasonable for creating a temporary file.
1257 This will be an absolute path that names a potential directory entry in the
1258 directory *dir* or a common location for temporary files if *dir* is omitted or
1259 ``None``. If given and not ``None``, *prefix* is used to provide a short prefix
1260 to the filename. Applications are responsible for properly creating and
1261 managing files created using paths returned by :func:`tempnam`; no automatic
1262 cleanup is provided. On Unix, the environment variable :envvar:`TMPDIR`
Georg Brandlf725b952008-01-05 19:44:22 +00001263 overrides *dir*, while on Windows :envvar:`TMP` is used. The specific
Georg Brandl8ec7f652007-08-15 14:28:01 +00001264 behavior of this function depends on the C library implementation; some aspects
1265 are underspecified in system documentation.
1266
1267 .. warning::
1268
1269 Use of :func:`tempnam` is vulnerable to symlink attacks; consider using
1270 :func:`tmpfile` (section :ref:`os-newstreams`) instead.
1271
Georg Brandl9af94982008-09-13 17:41:16 +00001272 Availability: Unix, Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001273
1274
1275.. function:: tmpnam()
1276
1277 Return a unique path name that is reasonable for creating a temporary file.
1278 This will be an absolute path that names a potential directory entry in a common
1279 location for temporary files. Applications are responsible for properly
1280 creating and managing files created using paths returned by :func:`tmpnam`; no
1281 automatic cleanup is provided.
1282
1283 .. warning::
1284
1285 Use of :func:`tmpnam` is vulnerable to symlink attacks; consider using
1286 :func:`tmpfile` (section :ref:`os-newstreams`) instead.
1287
1288 Availability: Unix, Windows. This function probably shouldn't be used on
1289 Windows, though: Microsoft's implementation of :func:`tmpnam` always creates a
1290 name in the root directory of the current drive, and that's generally a poor
1291 location for a temp file (depending on privileges, you may not even be able to
1292 open a file using this name).
1293
1294
1295.. data:: TMP_MAX
1296
1297 The maximum number of unique names that :func:`tmpnam` will generate before
1298 reusing names.
1299
1300
1301.. function:: unlink(path)
1302
Georg Brandl75439972009-08-24 17:24:27 +00001303 Remove (delete) the file *path*. This is the same function as
1304 :func:`remove`; the :func:`unlink` name is its traditional Unix
1305 name. Availability: Unix, Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001306
1307
1308.. function:: utime(path, times)
1309
Benjamin Peterson5b02ef32008-08-16 03:13:07 +00001310 Set the access and modified times of the file specified by *path*. If *times*
1311 is ``None``, then the file's access and modified times are set to the current
1312 time. (The effect is similar to running the Unix program :program:`touch` on
1313 the path.) Otherwise, *times* must be a 2-tuple of numbers, of the form
1314 ``(atime, mtime)`` which is used to set the access and modified times,
1315 respectively. Whether a directory can be given for *path* depends on whether
1316 the operating system implements directories as files (for example, Windows
1317 does not). Note that the exact times you set here may not be returned by a
1318 subsequent :func:`stat` call, depending on the resolution with which your
1319 operating system records access and modification times; see :func:`stat`.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001320
1321 .. versionchanged:: 2.0
1322 Added support for ``None`` for *times*.
1323
Georg Brandl9af94982008-09-13 17:41:16 +00001324 Availability: Unix, Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001325
1326
1327.. function:: walk(top[, topdown=True [, onerror=None[, followlinks=False]]])
1328
1329 .. index::
1330 single: directory; walking
1331 single: directory; traversal
1332
Georg Brandlf725b952008-01-05 19:44:22 +00001333 Generate the file names in a directory tree by walking the tree
1334 either top-down or bottom-up. For each directory in the tree rooted at directory
Georg Brandl8ec7f652007-08-15 14:28:01 +00001335 *top* (including *top* itself), it yields a 3-tuple ``(dirpath, dirnames,
1336 filenames)``.
1337
1338 *dirpath* is a string, the path to the directory. *dirnames* is a list of the
1339 names of the subdirectories in *dirpath* (excluding ``'.'`` and ``'..'``).
1340 *filenames* is a list of the names of the non-directory files in *dirpath*.
1341 Note that the names in the lists contain no path components. To get a full path
1342 (which begins with *top*) to a file or directory in *dirpath*, do
1343 ``os.path.join(dirpath, name)``.
1344
Georg Brandlf725b952008-01-05 19:44:22 +00001345 If optional argument *topdown* is ``True`` or not specified, the triple for a
Georg Brandl8ec7f652007-08-15 14:28:01 +00001346 directory is generated before the triples for any of its subdirectories
Georg Brandlf725b952008-01-05 19:44:22 +00001347 (directories are generated top-down). If *topdown* is ``False``, the triple for a
Georg Brandl8ec7f652007-08-15 14:28:01 +00001348 directory is generated after the triples for all of its subdirectories
Georg Brandlf725b952008-01-05 19:44:22 +00001349 (directories are generated bottom-up).
Georg Brandl8ec7f652007-08-15 14:28:01 +00001350
Georg Brandlf725b952008-01-05 19:44:22 +00001351 When *topdown* is ``True``, the caller can modify the *dirnames* list in-place
Georg Brandl8ec7f652007-08-15 14:28:01 +00001352 (perhaps using :keyword:`del` or slice assignment), and :func:`walk` will only
1353 recurse into the subdirectories whose names remain in *dirnames*; this can be
1354 used to prune the search, impose a specific order of visiting, or even to inform
1355 :func:`walk` about directories the caller creates or renames before it resumes
Georg Brandlf725b952008-01-05 19:44:22 +00001356 :func:`walk` again. Modifying *dirnames* when *topdown* is ``False`` is
Georg Brandl8ec7f652007-08-15 14:28:01 +00001357 ineffective, because in bottom-up mode the directories in *dirnames* are
1358 generated before *dirpath* itself is generated.
1359
Georg Brandlf725b952008-01-05 19:44:22 +00001360 By default errors from the :func:`listdir` call are ignored. If optional
Georg Brandl8ec7f652007-08-15 14:28:01 +00001361 argument *onerror* is specified, it should be a function; it will be called with
1362 one argument, an :exc:`OSError` instance. It can report the error to continue
1363 with the walk, or raise the exception to abort the walk. Note that the filename
1364 is available as the ``filename`` attribute of the exception object.
1365
1366 By default, :func:`walk` will not walk down into symbolic links that resolve to
Georg Brandlf725b952008-01-05 19:44:22 +00001367 directories. Set *followlinks* to ``True`` to visit directories pointed to by
Georg Brandl8ec7f652007-08-15 14:28:01 +00001368 symlinks, on systems that support them.
1369
1370 .. versionadded:: 2.6
1371 The *followlinks* parameter.
1372
1373 .. note::
1374
Georg Brandlf725b952008-01-05 19:44:22 +00001375 Be aware that setting *followlinks* to ``True`` can lead to infinite recursion if a
Georg Brandl8ec7f652007-08-15 14:28:01 +00001376 link points to a parent directory of itself. :func:`walk` does not keep track of
1377 the directories it visited already.
1378
1379 .. note::
1380
1381 If you pass a relative pathname, don't change the current working directory
1382 between resumptions of :func:`walk`. :func:`walk` never changes the current
1383 directory, and assumes that its caller doesn't either.
1384
1385 This example displays the number of bytes taken by non-directory files in each
1386 directory under the starting directory, except that it doesn't look under any
1387 CVS subdirectory::
1388
1389 import os
1390 from os.path import join, getsize
1391 for root, dirs, files in os.walk('python/Lib/email'):
1392 print root, "consumes",
1393 print sum(getsize(join(root, name)) for name in files),
1394 print "bytes in", len(files), "non-directory files"
1395 if 'CVS' in dirs:
1396 dirs.remove('CVS') # don't visit CVS directories
1397
Georg Brandlf725b952008-01-05 19:44:22 +00001398 In the next example, walking the tree bottom-up is essential: :func:`rmdir`
Georg Brandl8ec7f652007-08-15 14:28:01 +00001399 doesn't allow deleting a directory before the directory is empty::
1400
Georg Brandlf725b952008-01-05 19:44:22 +00001401 # Delete everything reachable from the directory named in "top",
Georg Brandl8ec7f652007-08-15 14:28:01 +00001402 # assuming there are no symbolic links.
1403 # CAUTION: This is dangerous! For example, if top == '/', it
1404 # could delete all your disk files.
1405 import os
1406 for root, dirs, files in os.walk(top, topdown=False):
1407 for name in files:
1408 os.remove(os.path.join(root, name))
1409 for name in dirs:
1410 os.rmdir(os.path.join(root, name))
1411
1412 .. versionadded:: 2.3
1413
1414
1415.. _os-process:
1416
1417Process Management
1418------------------
1419
1420These functions may be used to create and manage processes.
1421
1422The various :func:`exec\*` functions take a list of arguments for the new
1423program loaded into the process. In each case, the first of these arguments is
1424passed to the new program as its own name rather than as an argument a user may
1425have typed on a command line. For the C programmer, this is the ``argv[0]``
1426passed to a program's :cfunc:`main`. For example, ``os.execv('/bin/echo',
1427['foo', 'bar'])`` will only print ``bar`` on standard output; ``foo`` will seem
1428to be ignored.
1429
1430
1431.. function:: abort()
1432
1433 Generate a :const:`SIGABRT` signal to the current process. On Unix, the default
1434 behavior is to produce a core dump; on Windows, the process immediately returns
1435 an exit code of ``3``. Be aware that programs which use :func:`signal.signal`
1436 to register a handler for :const:`SIGABRT` will behave differently.
Georg Brandl9af94982008-09-13 17:41:16 +00001437 Availability: Unix, Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001438
1439
1440.. function:: execl(path, arg0, arg1, ...)
1441 execle(path, arg0, arg1, ..., env)
1442 execlp(file, arg0, arg1, ...)
1443 execlpe(file, arg0, arg1, ..., env)
1444 execv(path, args)
1445 execve(path, args, env)
1446 execvp(file, args)
1447 execvpe(file, args, env)
1448
1449 These functions all execute a new program, replacing the current process; they
1450 do not return. On Unix, the new executable is loaded into the current process,
Georg Brandlf725b952008-01-05 19:44:22 +00001451 and will have the same process id as the caller. Errors will be reported as
Georg Brandlc62ef8b2009-01-03 20:55:06 +00001452 :exc:`OSError` exceptions.
Andrew M. Kuchlingac771662008-09-28 00:15:27 +00001453
1454 The current process is replaced immediately. Open file objects and
1455 descriptors are not flushed, so if there may be data buffered
1456 on these open files, you should flush them using
1457 :func:`sys.stdout.flush` or :func:`os.fsync` before calling an
1458 :func:`exec\*` function.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001459
Georg Brandlf725b952008-01-05 19:44:22 +00001460 The "l" and "v" variants of the :func:`exec\*` functions differ in how
1461 command-line arguments are passed. The "l" variants are perhaps the easiest
Georg Brandl8ec7f652007-08-15 14:28:01 +00001462 to work with if the number of parameters is fixed when the code is written; the
1463 individual parameters simply become additional parameters to the :func:`execl\*`
Georg Brandlf725b952008-01-05 19:44:22 +00001464 functions. The "v" variants are good when the number of parameters is
Georg Brandl8ec7f652007-08-15 14:28:01 +00001465 variable, with the arguments being passed in a list or tuple as the *args*
1466 parameter. In either case, the arguments to the child process should start with
1467 the name of the command being run, but this is not enforced.
1468
Georg Brandlf725b952008-01-05 19:44:22 +00001469 The variants which include a "p" near the end (:func:`execlp`,
Georg Brandl8ec7f652007-08-15 14:28:01 +00001470 :func:`execlpe`, :func:`execvp`, and :func:`execvpe`) will use the
1471 :envvar:`PATH` environment variable to locate the program *file*. When the
1472 environment is being replaced (using one of the :func:`exec\*e` variants,
1473 discussed in the next paragraph), the new environment is used as the source of
1474 the :envvar:`PATH` variable. The other variants, :func:`execl`, :func:`execle`,
1475 :func:`execv`, and :func:`execve`, will not use the :envvar:`PATH` variable to
1476 locate the executable; *path* must contain an appropriate absolute or relative
1477 path.
1478
1479 For :func:`execle`, :func:`execlpe`, :func:`execve`, and :func:`execvpe` (note
Georg Brandlf725b952008-01-05 19:44:22 +00001480 that these all end in "e"), the *env* parameter must be a mapping which is
Georg Brandlfb246c42008-04-19 16:58:28 +00001481 used to define the environment variables for the new process (these are used
1482 instead of the current process' environment); the functions :func:`execl`,
Georg Brandl8ec7f652007-08-15 14:28:01 +00001483 :func:`execlp`, :func:`execv`, and :func:`execvp` all cause the new process to
Georg Brandlc62ef8b2009-01-03 20:55:06 +00001484 inherit the environment of the current process.
Andrew M. Kuchlingac771662008-09-28 00:15:27 +00001485
1486 Availability: Unix, Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001487
1488
1489.. function:: _exit(n)
1490
1491 Exit to the system with status *n*, without calling cleanup handlers, flushing
Georg Brandl9af94982008-09-13 17:41:16 +00001492 stdio buffers, etc. Availability: Unix, Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001493
1494 .. note::
1495
1496 The standard way to exit is ``sys.exit(n)``. :func:`_exit` should normally only
1497 be used in the child process after a :func:`fork`.
1498
Georg Brandlf725b952008-01-05 19:44:22 +00001499The following exit codes are defined and can be used with :func:`_exit`,
Georg Brandl8ec7f652007-08-15 14:28:01 +00001500although they are not required. These are typically used for system programs
1501written in Python, such as a mail server's external command delivery program.
1502
1503.. note::
1504
1505 Some of these may not be available on all Unix platforms, since there is some
1506 variation. These constants are defined where they are defined by the underlying
1507 platform.
1508
1509
1510.. data:: EX_OK
1511
Georg Brandl9af94982008-09-13 17:41:16 +00001512 Exit code that means no error occurred. Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001513
1514 .. versionadded:: 2.3
1515
1516
1517.. data:: EX_USAGE
1518
1519 Exit code that means the command was used incorrectly, such as when the wrong
Georg Brandl9af94982008-09-13 17:41:16 +00001520 number of arguments are given. Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001521
1522 .. versionadded:: 2.3
1523
1524
1525.. data:: EX_DATAERR
1526
Georg Brandl9af94982008-09-13 17:41:16 +00001527 Exit code that means the input data was incorrect. Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001528
1529 .. versionadded:: 2.3
1530
1531
1532.. data:: EX_NOINPUT
1533
1534 Exit code that means an input file did not exist or was not readable.
Georg Brandl9af94982008-09-13 17:41:16 +00001535 Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001536
1537 .. versionadded:: 2.3
1538
1539
1540.. data:: EX_NOUSER
1541
Georg Brandl9af94982008-09-13 17:41:16 +00001542 Exit code that means a specified user did not exist. Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001543
1544 .. versionadded:: 2.3
1545
1546
1547.. data:: EX_NOHOST
1548
Georg Brandl9af94982008-09-13 17:41:16 +00001549 Exit code that means a specified host did not exist. Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001550
1551 .. versionadded:: 2.3
1552
1553
1554.. data:: EX_UNAVAILABLE
1555
1556 Exit code that means that a required service is unavailable. Availability:
Georg Brandl9af94982008-09-13 17:41:16 +00001557 Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001558
1559 .. versionadded:: 2.3
1560
1561
1562.. data:: EX_SOFTWARE
1563
1564 Exit code that means an internal software error was detected. Availability:
Georg Brandl9af94982008-09-13 17:41:16 +00001565 Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001566
1567 .. versionadded:: 2.3
1568
1569
1570.. data:: EX_OSERR
1571
1572 Exit code that means an operating system error was detected, such as the
Georg Brandl9af94982008-09-13 17:41:16 +00001573 inability to fork or create a pipe. Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001574
1575 .. versionadded:: 2.3
1576
1577
1578.. data:: EX_OSFILE
1579
1580 Exit code that means some system file did not exist, could not be opened, or had
Georg Brandl9af94982008-09-13 17:41:16 +00001581 some other kind of error. Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001582
1583 .. versionadded:: 2.3
1584
1585
1586.. data:: EX_CANTCREAT
1587
1588 Exit code that means a user specified output file could not be created.
Georg Brandl9af94982008-09-13 17:41:16 +00001589 Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001590
1591 .. versionadded:: 2.3
1592
1593
1594.. data:: EX_IOERR
1595
1596 Exit code that means that an error occurred while doing I/O on some file.
Georg Brandl9af94982008-09-13 17:41:16 +00001597 Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001598
1599 .. versionadded:: 2.3
1600
1601
1602.. data:: EX_TEMPFAIL
1603
1604 Exit code that means a temporary failure occurred. This indicates something
1605 that may not really be an error, such as a network connection that couldn't be
Georg Brandl9af94982008-09-13 17:41:16 +00001606 made during a retryable operation. Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001607
1608 .. versionadded:: 2.3
1609
1610
1611.. data:: EX_PROTOCOL
1612
1613 Exit code that means that a protocol exchange was illegal, invalid, or not
Georg Brandl9af94982008-09-13 17:41:16 +00001614 understood. Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001615
1616 .. versionadded:: 2.3
1617
1618
1619.. data:: EX_NOPERM
1620
1621 Exit code that means that there were insufficient permissions to perform the
Georg Brandl9af94982008-09-13 17:41:16 +00001622 operation (but not intended for file system problems). Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001623
1624 .. versionadded:: 2.3
1625
1626
1627.. data:: EX_CONFIG
1628
1629 Exit code that means that some kind of configuration error occurred.
Georg Brandl9af94982008-09-13 17:41:16 +00001630 Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001631
1632 .. versionadded:: 2.3
1633
1634
1635.. data:: EX_NOTFOUND
1636
1637 Exit code that means something like "an entry was not found". Availability:
Georg Brandl9af94982008-09-13 17:41:16 +00001638 Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001639
1640 .. versionadded:: 2.3
1641
1642
1643.. function:: fork()
1644
Georg Brandlf725b952008-01-05 19:44:22 +00001645 Fork a child process. Return ``0`` in the child and the child's process id in the
Skip Montanaro75e51682008-03-15 02:32:49 +00001646 parent. If an error occurs :exc:`OSError` is raised.
Gregory P. Smith08067492008-09-30 20:41:13 +00001647
1648 Note that some platforms including FreeBSD <= 6.3, Cygwin and OS/2 EMX have
1649 known issues when using fork() from a thread.
1650
Georg Brandl9af94982008-09-13 17:41:16 +00001651 Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001652
1653
1654.. function:: forkpty()
1655
1656 Fork a child process, using a new pseudo-terminal as the child's controlling
1657 terminal. Return a pair of ``(pid, fd)``, where *pid* is ``0`` in the child, the
1658 new child's process id in the parent, and *fd* is the file descriptor of the
1659 master end of the pseudo-terminal. For a more portable approach, use the
Skip Montanaro75e51682008-03-15 02:32:49 +00001660 :mod:`pty` module. If an error occurs :exc:`OSError` is raised.
Georg Brandl9af94982008-09-13 17:41:16 +00001661 Availability: some flavors of Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001662
1663
1664.. function:: kill(pid, sig)
1665
1666 .. index::
1667 single: process; killing
1668 single: process; signalling
1669
1670 Send signal *sig* to the process *pid*. Constants for the specific signals
1671 available on the host platform are defined in the :mod:`signal` module.
Georg Brandl9af94982008-09-13 17:41:16 +00001672 Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001673
1674
1675.. function:: killpg(pgid, sig)
1676
1677 .. index::
1678 single: process; killing
1679 single: process; signalling
1680
Georg Brandl9af94982008-09-13 17:41:16 +00001681 Send the signal *sig* to the process group *pgid*. Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001682
1683 .. versionadded:: 2.3
1684
1685
1686.. function:: nice(increment)
1687
1688 Add *increment* to the process's "niceness". Return the new niceness.
Georg Brandl9af94982008-09-13 17:41:16 +00001689 Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001690
1691
1692.. function:: plock(op)
1693
1694 Lock program segments into memory. The value of *op* (defined in
Georg Brandl9af94982008-09-13 17:41:16 +00001695 ``<sys/lock.h>``) determines which segments are locked. Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001696
1697
1698.. function:: popen(...)
1699 popen2(...)
1700 popen3(...)
1701 popen4(...)
1702 :noindex:
1703
1704 Run child processes, returning opened pipes for communications. These functions
1705 are described in section :ref:`os-newstreams`.
1706
1707
1708.. function:: spawnl(mode, path, ...)
1709 spawnle(mode, path, ..., env)
1710 spawnlp(mode, file, ...)
1711 spawnlpe(mode, file, ..., env)
1712 spawnv(mode, path, args)
1713 spawnve(mode, path, args, env)
1714 spawnvp(mode, file, args)
1715 spawnvpe(mode, file, args, env)
1716
1717 Execute the program *path* in a new process.
1718
1719 (Note that the :mod:`subprocess` module provides more powerful facilities for
1720 spawning new processes and retrieving their results; using that module is
R. David Murrayccb9d4b2009-06-09 00:44:22 +00001721 preferable to using these functions. Check especially the
1722 :ref:`subprocess-replacements` section.)
Georg Brandl8ec7f652007-08-15 14:28:01 +00001723
Georg Brandlf725b952008-01-05 19:44:22 +00001724 If *mode* is :const:`P_NOWAIT`, this function returns the process id of the new
Georg Brandl8ec7f652007-08-15 14:28:01 +00001725 process; if *mode* is :const:`P_WAIT`, returns the process's exit code if it
1726 exits normally, or ``-signal``, where *signal* is the signal that killed the
Georg Brandlf725b952008-01-05 19:44:22 +00001727 process. On Windows, the process id will actually be the process handle, so can
Georg Brandl8ec7f652007-08-15 14:28:01 +00001728 be used with the :func:`waitpid` function.
1729
Georg Brandlf725b952008-01-05 19:44:22 +00001730 The "l" and "v" variants of the :func:`spawn\*` functions differ in how
1731 command-line arguments are passed. The "l" variants are perhaps the easiest
Georg Brandl8ec7f652007-08-15 14:28:01 +00001732 to work with if the number of parameters is fixed when the code is written; the
1733 individual parameters simply become additional parameters to the
Georg Brandlf725b952008-01-05 19:44:22 +00001734 :func:`spawnl\*` functions. The "v" variants are good when the number of
Georg Brandl8ec7f652007-08-15 14:28:01 +00001735 parameters is variable, with the arguments being passed in a list or tuple as
1736 the *args* parameter. In either case, the arguments to the child process must
1737 start with the name of the command being run.
1738
Georg Brandlf725b952008-01-05 19:44:22 +00001739 The variants which include a second "p" near the end (:func:`spawnlp`,
Georg Brandl8ec7f652007-08-15 14:28:01 +00001740 :func:`spawnlpe`, :func:`spawnvp`, and :func:`spawnvpe`) will use the
1741 :envvar:`PATH` environment variable to locate the program *file*. When the
1742 environment is being replaced (using one of the :func:`spawn\*e` variants,
1743 discussed in the next paragraph), the new environment is used as the source of
1744 the :envvar:`PATH` variable. The other variants, :func:`spawnl`,
1745 :func:`spawnle`, :func:`spawnv`, and :func:`spawnve`, will not use the
1746 :envvar:`PATH` variable to locate the executable; *path* must contain an
1747 appropriate absolute or relative path.
1748
1749 For :func:`spawnle`, :func:`spawnlpe`, :func:`spawnve`, and :func:`spawnvpe`
Georg Brandlf725b952008-01-05 19:44:22 +00001750 (note that these all end in "e"), the *env* parameter must be a mapping
Georg Brandlfb246c42008-04-19 16:58:28 +00001751 which is used to define the environment variables for the new process (they are
1752 used instead of the current process' environment); the functions
Georg Brandl8ec7f652007-08-15 14:28:01 +00001753 :func:`spawnl`, :func:`spawnlp`, :func:`spawnv`, and :func:`spawnvp` all cause
Georg Brandl22717df2009-03-31 18:26:55 +00001754 the new process to inherit the environment of the current process. Note that
1755 keys and values in the *env* dictionary must be strings; invalid keys or
1756 values will cause the function to fail, with a return value of ``127``.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001757
1758 As an example, the following calls to :func:`spawnlp` and :func:`spawnvpe` are
1759 equivalent::
1760
1761 import os
1762 os.spawnlp(os.P_WAIT, 'cp', 'cp', 'index.html', '/dev/null')
1763
1764 L = ['cp', 'index.html', '/dev/null']
1765 os.spawnvpe(os.P_WAIT, 'cp', L, os.environ)
1766
1767 Availability: Unix, Windows. :func:`spawnlp`, :func:`spawnlpe`, :func:`spawnvp`
1768 and :func:`spawnvpe` are not available on Windows.
1769
1770 .. versionadded:: 1.6
1771
1772
1773.. data:: P_NOWAIT
1774 P_NOWAITO
1775
1776 Possible values for the *mode* parameter to the :func:`spawn\*` family of
1777 functions. If either of these values is given, the :func:`spawn\*` functions
Georg Brandlf725b952008-01-05 19:44:22 +00001778 will return as soon as the new process has been created, with the process id as
Georg Brandl9af94982008-09-13 17:41:16 +00001779 the return value. Availability: Unix, Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001780
1781 .. versionadded:: 1.6
1782
1783
1784.. data:: P_WAIT
1785
1786 Possible value for the *mode* parameter to the :func:`spawn\*` family of
1787 functions. If this is given as *mode*, the :func:`spawn\*` functions will not
1788 return until the new process has run to completion and will return the exit code
1789 of the process the run is successful, or ``-signal`` if a signal kills the
Georg Brandl9af94982008-09-13 17:41:16 +00001790 process. Availability: Unix, Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001791
1792 .. versionadded:: 1.6
1793
1794
1795.. data:: P_DETACH
1796 P_OVERLAY
1797
1798 Possible values for the *mode* parameter to the :func:`spawn\*` family of
1799 functions. These are less portable than those listed above. :const:`P_DETACH`
1800 is similar to :const:`P_NOWAIT`, but the new process is detached from the
1801 console of the calling process. If :const:`P_OVERLAY` is used, the current
1802 process will be replaced; the :func:`spawn\*` function will not return.
1803 Availability: Windows.
1804
1805 .. versionadded:: 1.6
1806
1807
1808.. function:: startfile(path[, operation])
1809
1810 Start a file with its associated application.
1811
1812 When *operation* is not specified or ``'open'``, this acts like double-clicking
1813 the file in Windows Explorer, or giving the file name as an argument to the
1814 :program:`start` command from the interactive command shell: the file is opened
1815 with whatever application (if any) its extension is associated.
1816
1817 When another *operation* is given, it must be a "command verb" that specifies
1818 what should be done with the file. Common verbs documented by Microsoft are
1819 ``'print'`` and ``'edit'`` (to be used on files) as well as ``'explore'`` and
1820 ``'find'`` (to be used on directories).
1821
1822 :func:`startfile` returns as soon as the associated application is launched.
1823 There is no option to wait for the application to close, and no way to retrieve
1824 the application's exit status. The *path* parameter is relative to the current
1825 directory. If you want to use an absolute path, make sure the first character
1826 is not a slash (``'/'``); the underlying Win32 :cfunc:`ShellExecute` function
1827 doesn't work if it is. Use the :func:`os.path.normpath` function to ensure that
1828 the path is properly encoded for Win32. Availability: Windows.
1829
1830 .. versionadded:: 2.0
1831
1832 .. versionadded:: 2.5
1833 The *operation* parameter.
1834
1835
1836.. function:: system(command)
1837
1838 Execute the command (a string) in a subshell. This is implemented by calling
Georg Brandl647e9d22009-10-14 15:57:46 +00001839 the Standard C function :cfunc:`system`, and has the same limitations.
Georg Brandl11abfe62009-10-18 07:58:12 +00001840 Changes to :data:`sys.stdin`, etc. are not reflected in the environment of the
Georg Brandl647e9d22009-10-14 15:57:46 +00001841 executed command.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001842
1843 On Unix, the return value is the exit status of the process encoded in the
1844 format specified for :func:`wait`. Note that POSIX does not specify the meaning
1845 of the return value of the C :cfunc:`system` function, so the return value of
1846 the Python function is system-dependent.
1847
1848 On Windows, the return value is that returned by the system shell after running
1849 *command*, given by the Windows environment variable :envvar:`COMSPEC`: on
1850 :program:`command.com` systems (Windows 95, 98 and ME) this is always ``0``; on
1851 :program:`cmd.exe` systems (Windows NT, 2000 and XP) this is the exit status of
1852 the command run; on systems using a non-native shell, consult your shell
1853 documentation.
1854
Georg Brandl9af94982008-09-13 17:41:16 +00001855 Availability: Unix, Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001856
1857 The :mod:`subprocess` module provides more powerful facilities for spawning new
1858 processes and retrieving their results; using that module is preferable to using
Georg Brandl0ba92b22008-06-22 09:05:29 +00001859 this function. Use the :mod:`subprocess` module. Check especially the
1860 :ref:`subprocess-replacements` section.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001861
1862
1863.. function:: times()
1864
1865 Return a 5-tuple of floating point numbers indicating accumulated (processor or
1866 other) times, in seconds. The items are: user time, system time, children's
1867 user time, children's system time, and elapsed real time since a fixed point in
1868 the past, in that order. See the Unix manual page :manpage:`times(2)` or the
Georg Brandl9af94982008-09-13 17:41:16 +00001869 corresponding Windows Platform API documentation. Availability: Unix,
Georg Brandl0a40ffb2008-02-13 07:20:22 +00001870 Windows. On Windows, only the first two items are filled, the others are zero.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001871
1872
1873.. function:: wait()
1874
1875 Wait for completion of a child process, and return a tuple containing its pid
1876 and exit status indication: a 16-bit number, whose low byte is the signal number
1877 that killed the process, and whose high byte is the exit status (if the signal
1878 number is zero); the high bit of the low byte is set if a core file was
Georg Brandl9af94982008-09-13 17:41:16 +00001879 produced. Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001880
1881
1882.. function:: waitpid(pid, options)
1883
1884 The details of this function differ on Unix and Windows.
1885
1886 On Unix: Wait for completion of a child process given by process id *pid*, and
1887 return a tuple containing its process id and exit status indication (encoded as
1888 for :func:`wait`). The semantics of the call are affected by the value of the
1889 integer *options*, which should be ``0`` for normal operation.
1890
1891 If *pid* is greater than ``0``, :func:`waitpid` requests status information for
1892 that specific process. If *pid* is ``0``, the request is for the status of any
1893 child in the process group of the current process. If *pid* is ``-1``, the
1894 request pertains to any child of the current process. If *pid* is less than
1895 ``-1``, status is requested for any process in the process group ``-pid`` (the
1896 absolute value of *pid*).
1897
Gregory P. Smith59de7f52008-08-15 23:14:00 +00001898 An :exc:`OSError` is raised with the value of errno when the syscall
1899 returns -1.
1900
Georg Brandl8ec7f652007-08-15 14:28:01 +00001901 On Windows: Wait for completion of a process given by process handle *pid*, and
1902 return a tuple containing *pid*, and its exit status shifted left by 8 bits
1903 (shifting makes cross-platform use of the function easier). A *pid* less than or
1904 equal to ``0`` has no special meaning on Windows, and raises an exception. The
1905 value of integer *options* has no effect. *pid* can refer to any process whose
1906 id is known, not necessarily a child process. The :func:`spawn` functions called
1907 with :const:`P_NOWAIT` return suitable process handles.
1908
1909
1910.. function:: wait3([options])
1911
1912 Similar to :func:`waitpid`, except no process id argument is given and a
1913 3-element tuple containing the child's process id, exit status indication, and
1914 resource usage information is returned. Refer to :mod:`resource`.\
1915 :func:`getrusage` for details on resource usage information. The option
1916 argument is the same as that provided to :func:`waitpid` and :func:`wait4`.
1917 Availability: Unix.
1918
1919 .. versionadded:: 2.5
1920
1921
1922.. function:: wait4(pid, options)
1923
1924 Similar to :func:`waitpid`, except a 3-element tuple, containing the child's
1925 process id, exit status indication, and resource usage information is returned.
1926 Refer to :mod:`resource`.\ :func:`getrusage` for details on resource usage
1927 information. The arguments to :func:`wait4` are the same as those provided to
1928 :func:`waitpid`. Availability: Unix.
1929
1930 .. versionadded:: 2.5
1931
1932
1933.. data:: WNOHANG
1934
1935 The option for :func:`waitpid` to return immediately if no child process status
1936 is available immediately. The function returns ``(0, 0)`` in this case.
Georg Brandl9af94982008-09-13 17:41:16 +00001937 Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001938
1939
1940.. data:: WCONTINUED
1941
1942 This option causes child processes to be reported if they have been continued
1943 from a job control stop since their status was last reported. Availability: Some
1944 Unix systems.
1945
1946 .. versionadded:: 2.3
1947
1948
1949.. data:: WUNTRACED
1950
1951 This option causes child processes to be reported if they have been stopped but
1952 their current state has not been reported since they were stopped. Availability:
Georg Brandl9af94982008-09-13 17:41:16 +00001953 Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001954
1955 .. versionadded:: 2.3
1956
1957The following functions take a process status code as returned by
1958:func:`system`, :func:`wait`, or :func:`waitpid` as a parameter. They may be
1959used to determine the disposition of a process.
1960
1961
1962.. function:: WCOREDUMP(status)
1963
Georg Brandlf725b952008-01-05 19:44:22 +00001964 Return ``True`` if a core dump was generated for the process, otherwise
Georg Brandl9af94982008-09-13 17:41:16 +00001965 return ``False``. Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001966
1967 .. versionadded:: 2.3
1968
1969
1970.. function:: WIFCONTINUED(status)
1971
Georg Brandlf725b952008-01-05 19:44:22 +00001972 Return ``True`` if the process has been continued from a job control stop,
1973 otherwise return ``False``. Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001974
1975 .. versionadded:: 2.3
1976
1977
1978.. function:: WIFSTOPPED(status)
1979
Georg Brandlf725b952008-01-05 19:44:22 +00001980 Return ``True`` if the process has been stopped, otherwise return
Georg Brandl8ec7f652007-08-15 14:28:01 +00001981 ``False``. Availability: Unix.
1982
1983
1984.. function:: WIFSIGNALED(status)
1985
Georg Brandlf725b952008-01-05 19:44:22 +00001986 Return ``True`` if the process exited due to a signal, otherwise return
Georg Brandl9af94982008-09-13 17:41:16 +00001987 ``False``. Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001988
1989
1990.. function:: WIFEXITED(status)
1991
Georg Brandlf725b952008-01-05 19:44:22 +00001992 Return ``True`` if the process exited using the :manpage:`exit(2)` system call,
Georg Brandl9af94982008-09-13 17:41:16 +00001993 otherwise return ``False``. Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001994
1995
1996.. function:: WEXITSTATUS(status)
1997
1998 If ``WIFEXITED(status)`` is true, return the integer parameter to the
1999 :manpage:`exit(2)` system call. Otherwise, the return value is meaningless.
Georg Brandl9af94982008-09-13 17:41:16 +00002000 Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00002001
2002
2003.. function:: WSTOPSIG(status)
2004
Georg Brandl9af94982008-09-13 17:41:16 +00002005 Return the signal which caused the process to stop. Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00002006
2007
2008.. function:: WTERMSIG(status)
2009
Georg Brandl9af94982008-09-13 17:41:16 +00002010 Return the signal which caused the process to exit. Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00002011
2012
2013.. _os-path:
2014
2015Miscellaneous System Information
2016--------------------------------
2017
2018
2019.. function:: confstr(name)
2020
2021 Return string-valued system configuration values. *name* specifies the
2022 configuration value to retrieve; it may be a string which is the name of a
2023 defined system value; these names are specified in a number of standards (POSIX,
2024 Unix 95, Unix 98, and others). Some platforms define additional names as well.
2025 The names known to the host operating system are given as the keys of the
2026 ``confstr_names`` dictionary. For configuration variables not included in that
2027 mapping, passing an integer for *name* is also accepted. Availability:
Georg Brandl9af94982008-09-13 17:41:16 +00002028 Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00002029
2030 If the configuration value specified by *name* isn't defined, ``None`` is
2031 returned.
2032
2033 If *name* is a string and is not known, :exc:`ValueError` is raised. If a
2034 specific value for *name* is not supported by the host system, even if it is
2035 included in ``confstr_names``, an :exc:`OSError` is raised with
2036 :const:`errno.EINVAL` for the error number.
2037
2038
2039.. data:: confstr_names
2040
2041 Dictionary mapping names accepted by :func:`confstr` to the integer values
2042 defined for those names by the host operating system. This can be used to
Georg Brandl9af94982008-09-13 17:41:16 +00002043 determine the set of names known to the system. Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00002044
2045
2046.. function:: getloadavg()
2047
Georg Brandl57fe0f22008-01-12 10:53:29 +00002048 Return the number of processes in the system run queue averaged over the last
2049 1, 5, and 15 minutes or raises :exc:`OSError` if the load average was
Georg Brandl6bb7bcf2008-05-30 19:12:13 +00002050 unobtainable. Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00002051
2052 .. versionadded:: 2.3
2053
2054
2055.. function:: sysconf(name)
2056
2057 Return integer-valued system configuration values. If the configuration value
2058 specified by *name* isn't defined, ``-1`` is returned. The comments regarding
2059 the *name* parameter for :func:`confstr` apply here as well; the dictionary that
2060 provides information on the known names is given by ``sysconf_names``.
Georg Brandl9af94982008-09-13 17:41:16 +00002061 Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00002062
2063
2064.. data:: sysconf_names
2065
2066 Dictionary mapping names accepted by :func:`sysconf` to the integer values
2067 defined for those names by the host operating system. This can be used to
Georg Brandl9af94982008-09-13 17:41:16 +00002068 determine the set of names known to the system. Availability: Unix.
Georg Brandl8ec7f652007-08-15 14:28:01 +00002069
Georg Brandlf725b952008-01-05 19:44:22 +00002070The following data values are used to support path manipulation operations. These
Georg Brandl8ec7f652007-08-15 14:28:01 +00002071are defined for all platforms.
2072
2073Higher-level operations on pathnames are defined in the :mod:`os.path` module.
2074
2075
2076.. data:: curdir
2077
2078 The constant string used by the operating system to refer to the current
Georg Brandl9af94982008-09-13 17:41:16 +00002079 directory. This is ``'.'`` for Windows and POSIX. Also available via
2080 :mod:`os.path`.
Georg Brandl8ec7f652007-08-15 14:28:01 +00002081
2082
2083.. data:: pardir
2084
2085 The constant string used by the operating system to refer to the parent
Georg Brandl9af94982008-09-13 17:41:16 +00002086 directory. This is ``'..'`` for Windows and POSIX. Also available via
2087 :mod:`os.path`.
Georg Brandl8ec7f652007-08-15 14:28:01 +00002088
2089
2090.. data:: sep
2091
Georg Brandl9af94982008-09-13 17:41:16 +00002092 The character used by the operating system to separate pathname components.
2093 This is ``'/'`` for POSIX and ``'\\'`` for Windows. Note that knowing this
2094 is not sufficient to be able to parse or concatenate pathnames --- use
Georg Brandl8ec7f652007-08-15 14:28:01 +00002095 :func:`os.path.split` and :func:`os.path.join` --- but it is occasionally
2096 useful. Also available via :mod:`os.path`.
2097
2098
2099.. data:: altsep
2100
2101 An alternative character used by the operating system to separate pathname
2102 components, or ``None`` if only one separator character exists. This is set to
2103 ``'/'`` on Windows systems where ``sep`` is a backslash. Also available via
2104 :mod:`os.path`.
2105
2106
2107.. data:: extsep
2108
2109 The character which separates the base filename from the extension; for example,
2110 the ``'.'`` in :file:`os.py`. Also available via :mod:`os.path`.
2111
2112 .. versionadded:: 2.2
2113
2114
2115.. data:: pathsep
2116
2117 The character conventionally used by the operating system to separate search
2118 path components (as in :envvar:`PATH`), such as ``':'`` for POSIX or ``';'`` for
2119 Windows. Also available via :mod:`os.path`.
2120
2121
2122.. data:: defpath
2123
2124 The default search path used by :func:`exec\*p\*` and :func:`spawn\*p\*` if the
2125 environment doesn't have a ``'PATH'`` key. Also available via :mod:`os.path`.
2126
2127
2128.. data:: linesep
2129
2130 The string used to separate (or, rather, terminate) lines on the current
Georg Brandl9af94982008-09-13 17:41:16 +00002131 platform. This may be a single character, such as ``'\n'`` for POSIX, or
2132 multiple characters, for example, ``'\r\n'`` for Windows. Do not use
2133 *os.linesep* as a line terminator when writing files opened in text mode (the
2134 default); use a single ``'\n'`` instead, on all platforms.
Georg Brandl8ec7f652007-08-15 14:28:01 +00002135
2136
2137.. data:: devnull
2138
Georg Brandl9af94982008-09-13 17:41:16 +00002139 The file path of the null device. For example: ``'/dev/null'`` for POSIX.
2140 Also available via :mod:`os.path`.
Georg Brandl8ec7f652007-08-15 14:28:01 +00002141
2142 .. versionadded:: 2.4
2143
2144
2145.. _os-miscfunc:
2146
2147Miscellaneous Functions
2148-----------------------
2149
2150
2151.. function:: urandom(n)
2152
2153 Return a string of *n* random bytes suitable for cryptographic use.
2154
2155 This function returns random bytes from an OS-specific randomness source. The
2156 returned data should be unpredictable enough for cryptographic applications,
2157 though its exact quality depends on the OS implementation. On a UNIX-like
2158 system this will query /dev/urandom, and on Windows it will use CryptGenRandom.
2159 If a randomness source is not found, :exc:`NotImplementedError` will be raised.
2160
2161 .. versionadded:: 2.4
2162