blob: 86f587fd2b9d9960a5f75782aeee17c1589f688a [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001:mod:`os` --- Miscellaneous operating system interfaces
2=======================================================
3
4.. module:: os
5 :synopsis: Miscellaneous operating system interfaces.
6
7
Christian Heimesa62da1d2008-01-12 19:39:10 +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 Brandl116aa622007-08-15 14:28:22 +000015
Benjamin Peterson1baf4652009-12-31 03:11:23 +000016Notes on the availability of these functions:
Georg Brandl116aa622007-08-15 14:28:22 +000017
Benjamin Peterson1baf4652009-12-31 03:11:23 +000018* The design of all built-in operating system dependent modules of Python is
19 such that as long as the same functionality is available, it uses the same
20 interface; for example, the function ``os.stat(path)`` returns stat
21 information about *path* in the same format (which happens to have originated
22 with the POSIX interface).
Georg Brandl116aa622007-08-15 14:28:22 +000023
Benjamin Peterson1baf4652009-12-31 03:11:23 +000024* Extensions peculiar to a particular operating system are also available
25 through the :mod:`os` module, but using them is of course a threat to
26 portability.
Georg Brandl116aa622007-08-15 14:28:22 +000027
Benjamin Peterson1baf4652009-12-31 03:11:23 +000028* All functions accepting path or file names accept both bytes and string
29 objects, and result in an object of the same type, if a path or file name is
30 returned.
Georg Brandl76e55382008-10-08 16:34:57 +000031
32.. note::
33
Georg Brandlc575c902008-09-13 17:46:05 +000034 If not separately noted, all functions that claim "Availability: Unix" are
35 supported on Mac OS X, which builds on a Unix core.
36
Benjamin Peterson1baf4652009-12-31 03:11:23 +000037* An "Availability: Unix" note means that this function is commonly found on
38 Unix systems. It does not make any claims about its existence on a specific
39 operating system.
40
41* If not separately noted, all functions that claim "Availability: Unix" are
42 supported on Mac OS X, which builds on a Unix core.
43
Benjamin Petersonf650e462010-05-06 23:03:05 +000044.. Availability notes get their own line and occur at the end of the function
45.. documentation.
46
Georg Brandlc575c902008-09-13 17:46:05 +000047.. note::
48
Christian Heimesa62da1d2008-01-12 19:39:10 +000049 All functions in this module raise :exc:`OSError` in the case of invalid or
50 inaccessible file names and paths, or other arguments that have the correct
51 type, but are not accepted by the operating system.
Georg Brandl116aa622007-08-15 14:28:22 +000052
Georg Brandl116aa622007-08-15 14:28:22 +000053.. exception:: error
54
Christian Heimesa62da1d2008-01-12 19:39:10 +000055 An alias for the built-in :exc:`OSError` exception.
Georg Brandl116aa622007-08-15 14:28:22 +000056
57
58.. data:: name
59
Benjamin Peterson1baf4652009-12-31 03:11:23 +000060 The name of the operating system dependent module imported. The following
61 names have currently been registered: ``'posix'``, ``'nt'``, ``'mac'``,
62 ``'os2'``, ``'ce'``, ``'java'``.
Georg Brandl116aa622007-08-15 14:28:22 +000063
64
Martin v. Löwis011e8422009-05-05 04:43:17 +000065.. _os-filenames:
66
67File Names, Command Line Arguments, and Environment Variables
68-------------------------------------------------------------
69
Georg Brandl67b21b72010-08-17 15:07:14 +000070In Python, file names, command line arguments, and environment variables are
71represented using the string type. On some systems, decoding these strings to
72and from bytes is necessary before passing them to the operating system. Python
73uses the file system encoding to perform this conversion (see
74:func:`sys.getfilesystemencoding`).
Martin v. Löwis011e8422009-05-05 04:43:17 +000075
76.. versionchanged:: 3.1
Georg Brandl67b21b72010-08-17 15:07:14 +000077 On some systems, conversion using the file system encoding may fail. In this
78 case, Python uses the ``surrogateescape`` encoding error handler, which means
79 that undecodable bytes are replaced by a Unicode character U+DCxx on
80 decoding, and these are again translated to the original byte on encoding.
Martin v. Löwis011e8422009-05-05 04:43:17 +000081
82
Georg Brandl67b21b72010-08-17 15:07:14 +000083The file system encoding must guarantee to successfully decode all bytes
84below 128. If the file system encoding fails to provide this guarantee, API
85functions may raise UnicodeErrors.
Martin v. Löwis011e8422009-05-05 04:43:17 +000086
87
Georg Brandl116aa622007-08-15 14:28:22 +000088.. _os-procinfo:
89
90Process Parameters
91------------------
92
93These functions and data items provide information and operate on the current
94process and user.
95
96
97.. data:: environ
98
99 A mapping object representing the string environment. For example,
100 ``environ['HOME']`` is the pathname of your home directory (on some platforms),
101 and is equivalent to ``getenv("HOME")`` in C.
102
103 This mapping is captured the first time the :mod:`os` module is imported,
104 typically during Python startup as part of processing :file:`site.py`. Changes
105 to the environment made after this time are not reflected in ``os.environ``,
106 except for changes made by modifying ``os.environ`` directly.
107
108 If the platform supports the :func:`putenv` function, this mapping may be used
109 to modify the environment as well as query the environment. :func:`putenv` will
110 be called automatically when the mapping is modified.
111
Victor Stinner84ae1182010-05-06 22:05:07 +0000112 On Unix, keys and values use :func:`sys.getfilesystemencoding` and
113 ``'surrogateescape'`` error handler. Use :data:`environb` if you would like
114 to use a different encoding.
115
Georg Brandl116aa622007-08-15 14:28:22 +0000116 .. note::
117
118 Calling :func:`putenv` directly does not change ``os.environ``, so it's better
119 to modify ``os.environ``.
120
121 .. note::
122
Georg Brandlc575c902008-09-13 17:46:05 +0000123 On some platforms, including FreeBSD and Mac OS X, setting ``environ`` may
124 cause memory leaks. Refer to the system documentation for
Georg Brandl60203b42010-10-06 10:11:56 +0000125 :c:func:`putenv`.
Georg Brandl116aa622007-08-15 14:28:22 +0000126
127 If :func:`putenv` is not provided, a modified copy of this mapping may be
128 passed to the appropriate process-creation functions to cause child processes
129 to use a modified environment.
130
Georg Brandl9afde1c2007-11-01 20:32:30 +0000131 If the platform supports the :func:`unsetenv` function, you can delete items in
Georg Brandl116aa622007-08-15 14:28:22 +0000132 this mapping to unset environment variables. :func:`unsetenv` will be called
Georg Brandl9afde1c2007-11-01 20:32:30 +0000133 automatically when an item is deleted from ``os.environ``, and when
134 one of the :meth:`pop` or :meth:`clear` methods is called.
135
Georg Brandl116aa622007-08-15 14:28:22 +0000136
Victor Stinner84ae1182010-05-06 22:05:07 +0000137.. data:: environb
138
139 Bytes version of :data:`environ`: a mapping object representing the
140 environment as byte strings. :data:`environ` and :data:`environb` are
141 synchronized (modify :data:`environb` updates :data:`environ`, and vice
142 versa).
143
Victor Stinnerb745a742010-05-18 17:17:23 +0000144 :data:`environb` is only available if :data:`supports_bytes_environ` is
145 True.
Victor Stinner84ae1182010-05-06 22:05:07 +0000146
Benjamin Peterson662c74f2010-05-06 22:09:03 +0000147 .. versionadded:: 3.2
148
Victor Stinner84ae1182010-05-06 22:05:07 +0000149
Georg Brandl116aa622007-08-15 14:28:22 +0000150.. function:: chdir(path)
151 fchdir(fd)
152 getcwd()
153 :noindex:
154
155 These functions are described in :ref:`os-file-dir`.
156
157
Victor Stinnere8d51452010-08-19 01:05:19 +0000158.. function:: fsencode(filename)
Victor Stinner449c4662010-05-08 11:10:09 +0000159
Victor Stinnere8d51452010-08-19 01:05:19 +0000160 Encode *filename* to the filesystem encoding with ``'surrogateescape'``
Victor Stinner62165d62010-10-09 10:34:37 +0000161 error handler, or ``'strict'`` on Windows; return :class:`bytes` unchanged.
Victor Stinnere8d51452010-08-19 01:05:19 +0000162
Antoine Pitroua305ca72010-09-25 22:12:00 +0000163 :func:`fsdecode` is the reverse function.
Victor Stinnere8d51452010-08-19 01:05:19 +0000164
165 .. versionadded:: 3.2
166
167
168.. function:: fsdecode(filename)
169
170 Decode *filename* from the filesystem encoding with ``'surrogateescape'``
Victor Stinner62165d62010-10-09 10:34:37 +0000171 error handler, or ``'strict'`` on Windows; return :class:`str` unchanged.
Victor Stinnere8d51452010-08-19 01:05:19 +0000172
173 :func:`fsencode` is the reverse function.
Victor Stinner449c4662010-05-08 11:10:09 +0000174
175 .. versionadded:: 3.2
176
177
Gregory P. Smithb6e8c7e2010-02-27 07:22:22 +0000178.. function:: get_exec_path(env=None)
179
180 Returns the list of directories that will be searched for a named
181 executable, similar to a shell, when launching a process.
182 *env*, when specified, should be an environment variable dictionary
183 to lookup the PATH in.
184 By default, when *env* is None, :data:`environ` is used.
185
186 .. versionadded:: 3.2
187
188
Georg Brandl116aa622007-08-15 14:28:22 +0000189.. function:: ctermid()
190
191 Return the filename corresponding to the controlling terminal of the process.
Benjamin Petersonf650e462010-05-06 23:03:05 +0000192
Georg Brandl116aa622007-08-15 14:28:22 +0000193 Availability: Unix.
194
195
196.. function:: getegid()
197
198 Return the effective group id of the current process. This corresponds to the
Benjamin Petersonf650e462010-05-06 23:03:05 +0000199 "set id" bit on the file being executed in the current process.
200
201 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +0000202
203
204.. function:: geteuid()
205
206 .. index:: single: user; effective id
207
Benjamin Petersonf650e462010-05-06 23:03:05 +0000208 Return the current process's effective user id.
209
210 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +0000211
212
213.. function:: getgid()
214
215 .. index:: single: process; group
216
Benjamin Petersonf650e462010-05-06 23:03:05 +0000217 Return the real group id of the current process.
218
219 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +0000220
221
222.. function:: getgroups()
223
224 Return list of supplemental group ids associated with the current process.
Benjamin Petersonf650e462010-05-06 23:03:05 +0000225
Georg Brandl116aa622007-08-15 14:28:22 +0000226 Availability: Unix.
227
228
Antoine Pitroub7572f02009-12-02 20:46:48 +0000229.. function:: initgroups(username, gid)
230
231 Call the system initgroups() to initialize the group access list with all of
232 the groups of which the specified username is a member, plus the specified
Benjamin Petersonf650e462010-05-06 23:03:05 +0000233 group id.
234
235 Availability: Unix.
Antoine Pitroub7572f02009-12-02 20:46:48 +0000236
237 .. versionadded:: 3.2
238
239
Georg Brandl116aa622007-08-15 14:28:22 +0000240.. function:: getlogin()
241
242 Return the name of the user logged in on the controlling terminal of the
Brian Curtine8e4b3b2010-09-23 20:04:14 +0000243 process. For most purposes, it is more useful to use the environment variables
244 :envvar:`LOGNAME` or :envvar:`USERNAME` to find out who the user is, or
Georg Brandl116aa622007-08-15 14:28:22 +0000245 ``pwd.getpwuid(os.getuid())[0]`` to get the login name of the currently
Benjamin Petersonf650e462010-05-06 23:03:05 +0000246 effective user id.
247
Brian Curtine8e4b3b2010-09-23 20:04:14 +0000248 Availability: Unix, Windows.
Georg Brandl116aa622007-08-15 14:28:22 +0000249
250
251.. function:: getpgid(pid)
252
253 Return the process group id of the process with process id *pid*. If *pid* is 0,
Benjamin Petersonf650e462010-05-06 23:03:05 +0000254 the process group id of the current process is returned.
Georg Brandl116aa622007-08-15 14:28:22 +0000255
Benjamin Petersonf650e462010-05-06 23:03:05 +0000256 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +0000257
258.. function:: getpgrp()
259
260 .. index:: single: process; group
261
Benjamin Petersonf650e462010-05-06 23:03:05 +0000262 Return the id of the current process group.
263
264 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +0000265
266
267.. function:: getpid()
268
269 .. index:: single: process; id
270
Benjamin Petersonf650e462010-05-06 23:03:05 +0000271 Return the current process id.
272
273 Availability: Unix, Windows.
Georg Brandl116aa622007-08-15 14:28:22 +0000274
275
276.. function:: getppid()
277
278 .. index:: single: process; id of parent
279
Amaury Forgeot d'Arc4b6fdf32010-09-07 21:31:17 +0000280 Return the parent's process id. When the parent process has exited, on Unix
281 the id returned is the one of the init process (1), on Windows it is still
282 the same id, which may be already reused by another process.
Benjamin Petersonf650e462010-05-06 23:03:05 +0000283
Amaury Forgeot d'Arc4b6fdf32010-09-07 21:31:17 +0000284 Availability: Unix, Windows
Georg Brandl116aa622007-08-15 14:28:22 +0000285
Amaury Forgeot d'Arc4b6fdf32010-09-07 21:31:17 +0000286 .. versionchanged:: 3.2
287 Added support for Windows.
Georg Brandl1b83a452009-11-28 11:12:26 +0000288
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +0000289.. function:: getpriority(which, who)
290
291 .. index:: single: process; scheduling priority
292
293 Get program scheduling priority. The value *which* is one of
294 :const:`PRIO_PROCESS`, :const:`PRIO_PGRP`, or :const:`PRIO_USER`, and *who*
295 is interpreted relative to *which* (a process identifier for
296 :const:`PRIO_PROCESS`, process group identifier for :const:`PRIO_PGRP`, and a
297 user ID for :const:`PRIO_USER`). A zero value for *who* denotes
298 (respectively) the calling process, the process group of the calling process,
299 or the real user ID of the calling process.
300
301 Availability: Unix
302
303 .. versionadded:: 3.3
304
Gregory P. Smithcf02c6a2009-11-27 17:54:17 +0000305.. function:: getresuid()
Martin v. Löwis7aed61a2009-11-27 14:09:49 +0000306
307 Return a tuple (ruid, euid, suid) denoting the current process's
Benjamin Petersonf650e462010-05-06 23:03:05 +0000308 real, effective, and saved user ids.
309
310 Availability: Unix.
Martin v. Löwis7aed61a2009-11-27 14:09:49 +0000311
Georg Brandl1b83a452009-11-28 11:12:26 +0000312 .. versionadded:: 3.2
313
Martin v. Löwis7aed61a2009-11-27 14:09:49 +0000314
Gregory P. Smithcf02c6a2009-11-27 17:54:17 +0000315.. function:: getresgid()
Martin v. Löwis7aed61a2009-11-27 14:09:49 +0000316
317 Return a tuple (rgid, egid, sgid) denoting the current process's
Georg Brandla9b51d22010-09-05 17:07:12 +0000318 real, effective, and saved group ids.
Benjamin Petersonf650e462010-05-06 23:03:05 +0000319
320 Availability: Unix.
Martin v. Löwis7aed61a2009-11-27 14:09:49 +0000321
Georg Brandl1b83a452009-11-28 11:12:26 +0000322 .. versionadded:: 3.2
323
Georg Brandl116aa622007-08-15 14:28:22 +0000324
325.. function:: getuid()
326
327 .. index:: single: user; id
328
Benjamin Petersonf650e462010-05-06 23:03:05 +0000329 Return the current process's user id.
330
331 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +0000332
333
Georg Brandl18244152009-09-02 20:34:52 +0000334.. function:: getenv(key, default=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000335
Georg Brandl18244152009-09-02 20:34:52 +0000336 Return the value of the environment variable *key* if it exists, or
Victor Stinner84ae1182010-05-06 22:05:07 +0000337 *default* if it doesn't. *key*, *default* and the result are str.
Victor Stinner84ae1182010-05-06 22:05:07 +0000338
339 On Unix, keys and values are decoded with :func:`sys.getfilesystemencoding`
340 and ``'surrogateescape'`` error handler. Use :func:`os.getenvb` if you
341 would like to use a different encoding.
342
Benjamin Petersonf650e462010-05-06 23:03:05 +0000343 Availability: most flavors of Unix, Windows.
344
Victor Stinner84ae1182010-05-06 22:05:07 +0000345
346.. function:: getenvb(key, default=None)
347
348 Return the value of the environment variable *key* if it exists, or
349 *default* if it doesn't. *key*, *default* and the result are bytes.
Benjamin Peterson0d6fe512010-05-06 22:13:11 +0000350
Victor Stinner84ae1182010-05-06 22:05:07 +0000351 Availability: most flavors of Unix.
Georg Brandl116aa622007-08-15 14:28:22 +0000352
Benjamin Peterson0d6fe512010-05-06 22:13:11 +0000353 .. versionadded:: 3.2
354
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +0000355.. data:: PRIO_PROCESS
356 PRIO_PGRP
357 PRIO_USER
358
359 Parameters for :func:`getpriority` and :func:`setpriority` functions.
360
361 Availability: Unix.
362
363 .. versionadded:: 3.3
Georg Brandl116aa622007-08-15 14:28:22 +0000364
Georg Brandl18244152009-09-02 20:34:52 +0000365.. function:: putenv(key, value)
Georg Brandl116aa622007-08-15 14:28:22 +0000366
367 .. index:: single: environment variables; setting
368
Georg Brandl18244152009-09-02 20:34:52 +0000369 Set the environment variable named *key* to the string *value*. Such
Georg Brandl116aa622007-08-15 14:28:22 +0000370 changes to the environment affect subprocesses started with :func:`os.system`,
Benjamin Petersonf650e462010-05-06 23:03:05 +0000371 :func:`popen` or :func:`fork` and :func:`execv`.
372
373 Availability: most flavors of Unix, Windows.
Georg Brandl116aa622007-08-15 14:28:22 +0000374
375 .. note::
376
Georg Brandlc575c902008-09-13 17:46:05 +0000377 On some platforms, including FreeBSD and Mac OS X, setting ``environ`` may
378 cause memory leaks. Refer to the system documentation for putenv.
Georg Brandl116aa622007-08-15 14:28:22 +0000379
380 When :func:`putenv` is supported, assignments to items in ``os.environ`` are
381 automatically translated into corresponding calls to :func:`putenv`; however,
382 calls to :func:`putenv` don't update ``os.environ``, so it is actually
383 preferable to assign to items of ``os.environ``.
384
385
386.. function:: setegid(egid)
387
Benjamin Petersonf650e462010-05-06 23:03:05 +0000388 Set the current process's effective group id.
389
390 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +0000391
392
393.. function:: seteuid(euid)
394
Benjamin Petersonf650e462010-05-06 23:03:05 +0000395 Set the current process's effective user id.
396
397 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +0000398
399
400.. function:: setgid(gid)
401
Benjamin Petersonf650e462010-05-06 23:03:05 +0000402 Set the current process' group id.
403
404 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +0000405
406
407.. function:: setgroups(groups)
408
409 Set the list of supplemental group ids associated with the current process to
410 *groups*. *groups* must be a sequence, and each element must be an integer
Christian Heimesfaf2f632008-01-06 16:59:19 +0000411 identifying a group. This operation is typically available only to the superuser.
Benjamin Petersonf650e462010-05-06 23:03:05 +0000412
Georg Brandl116aa622007-08-15 14:28:22 +0000413 Availability: Unix.
414
Georg Brandl116aa622007-08-15 14:28:22 +0000415
416.. function:: setpgrp()
417
Georg Brandl60203b42010-10-06 10:11:56 +0000418 Call the system call :c:func:`setpgrp` or :c:func:`setpgrp(0, 0)` depending on
Georg Brandl116aa622007-08-15 14:28:22 +0000419 which version is implemented (if any). See the Unix manual for the semantics.
Benjamin Petersonf650e462010-05-06 23:03:05 +0000420
Georg Brandl116aa622007-08-15 14:28:22 +0000421 Availability: Unix.
422
423
424.. function:: setpgid(pid, pgrp)
425
Georg Brandl60203b42010-10-06 10:11:56 +0000426 Call the system call :c:func:`setpgid` to set the process group id of the
Georg Brandl116aa622007-08-15 14:28:22 +0000427 process with id *pid* to the process group with id *pgrp*. See the Unix manual
Benjamin Petersonf650e462010-05-06 23:03:05 +0000428 for the semantics.
429
430 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +0000431
432
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +0000433.. function:: setpriority(which, who, priority)
434
435 .. index:: single: process; scheduling priority
436
437 Set program scheduling priority. The value *which* is one of
438 :const:`PRIO_PROCESS`, :const:`PRIO_PGRP`, or :const:`PRIO_USER`, and *who*
439 is interpreted relative to *which* (a process identifier for
440 :const:`PRIO_PROCESS`, process group identifier for :const:`PRIO_PGRP`, and a
441 user ID for :const:`PRIO_USER`). A zero value for *who* denotes
442 (respectively) the calling process, the process group of the calling process,
443 or the real user ID of the calling process.
444 *priority* is a value in the range -20 to 19. The default priority is 0;
445 lower priorities cause more favorable scheduling.
446
447 Availability: Unix
448
449 .. versionadded:: 3.3
450
451
Georg Brandl116aa622007-08-15 14:28:22 +0000452.. function:: setregid(rgid, egid)
453
Benjamin Petersonf650e462010-05-06 23:03:05 +0000454 Set the current process's real and effective group ids.
455
456 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +0000457
Georg Brandl1b83a452009-11-28 11:12:26 +0000458
Martin v. Löwis7aed61a2009-11-27 14:09:49 +0000459.. function:: setresgid(rgid, egid, sgid)
460
461 Set the current process's real, effective, and saved group ids.
Benjamin Petersonf650e462010-05-06 23:03:05 +0000462
Martin v. Löwis7aed61a2009-11-27 14:09:49 +0000463 Availability: Unix.
464
Georg Brandl1b83a452009-11-28 11:12:26 +0000465 .. versionadded:: 3.2
466
Martin v. Löwis7aed61a2009-11-27 14:09:49 +0000467
468.. function:: setresuid(ruid, euid, suid)
469
470 Set the current process's real, effective, and saved user ids.
Benjamin Petersonf650e462010-05-06 23:03:05 +0000471
Georg Brandl6faee4e2010-09-21 14:48:28 +0000472 Availability: Unix.
Martin v. Löwis7aed61a2009-11-27 14:09:49 +0000473
Georg Brandl1b83a452009-11-28 11:12:26 +0000474 .. versionadded:: 3.2
475
Martin v. Löwis7aed61a2009-11-27 14:09:49 +0000476
477.. function:: setreuid(ruid, euid)
478
Benjamin Petersonf650e462010-05-06 23:03:05 +0000479 Set the current process's real and effective user ids.
480
481 Availability: Unix.
Martin v. Löwis7aed61a2009-11-27 14:09:49 +0000482
Georg Brandl116aa622007-08-15 14:28:22 +0000483
484.. function:: getsid(pid)
485
Georg Brandl60203b42010-10-06 10:11:56 +0000486 Call the system call :c:func:`getsid`. See the Unix manual for the semantics.
Benjamin Petersonf650e462010-05-06 23:03:05 +0000487
Georg Brandl116aa622007-08-15 14:28:22 +0000488 Availability: Unix.
489
Georg Brandl116aa622007-08-15 14:28:22 +0000490
491.. function:: setsid()
492
Georg Brandl60203b42010-10-06 10:11:56 +0000493 Call the system call :c:func:`setsid`. See the Unix manual for the semantics.
Benjamin Petersonf650e462010-05-06 23:03:05 +0000494
Georg Brandl116aa622007-08-15 14:28:22 +0000495 Availability: Unix.
496
497
498.. function:: setuid(uid)
499
500 .. index:: single: user; id, setting
501
Benjamin Petersonf650e462010-05-06 23:03:05 +0000502 Set the current process's user id.
503
504 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +0000505
Georg Brandl116aa622007-08-15 14:28:22 +0000506
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000507.. placed in this section since it relates to errno.... a little weak
Georg Brandl116aa622007-08-15 14:28:22 +0000508.. function:: strerror(code)
509
510 Return the error message corresponding to the error code in *code*.
Georg Brandl60203b42010-10-06 10:11:56 +0000511 On platforms where :c:func:`strerror` returns ``NULL`` when given an unknown
Benjamin Petersonf650e462010-05-06 23:03:05 +0000512 error number, :exc:`ValueError` is raised.
513
514 Availability: Unix, Windows.
Georg Brandl116aa622007-08-15 14:28:22 +0000515
516
Victor Stinnerb745a742010-05-18 17:17:23 +0000517.. data:: supports_bytes_environ
518
519 True if the native OS type of the environment is bytes (eg. False on
520 Windows).
521
Victor Stinner8fddc9e2010-05-18 17:24:09 +0000522 .. versionadded:: 3.2
523
Victor Stinnerb745a742010-05-18 17:17:23 +0000524
Georg Brandl116aa622007-08-15 14:28:22 +0000525.. function:: umask(mask)
526
Benjamin Petersonf650e462010-05-06 23:03:05 +0000527 Set the current numeric umask and return the previous umask.
528
529 Availability: Unix, Windows.
Georg Brandl116aa622007-08-15 14:28:22 +0000530
531
532.. function:: uname()
533
534 .. index::
535 single: gethostname() (in module socket)
536 single: gethostbyaddr() (in module socket)
537
538 Return a 5-tuple containing information identifying the current operating
539 system. The tuple contains 5 strings: ``(sysname, nodename, release, version,
540 machine)``. Some systems truncate the nodename to 8 characters or to the
541 leading component; a better way to get the hostname is
542 :func:`socket.gethostname` or even
Benjamin Petersonf650e462010-05-06 23:03:05 +0000543 ``socket.gethostbyaddr(socket.gethostname())``.
544
545 Availability: recent flavors of Unix.
Georg Brandl116aa622007-08-15 14:28:22 +0000546
547
Georg Brandl18244152009-09-02 20:34:52 +0000548.. function:: unsetenv(key)
Georg Brandl116aa622007-08-15 14:28:22 +0000549
550 .. index:: single: environment variables; deleting
551
Georg Brandl18244152009-09-02 20:34:52 +0000552 Unset (delete) the environment variable named *key*. Such changes to the
Georg Brandl116aa622007-08-15 14:28:22 +0000553 environment affect subprocesses started with :func:`os.system`, :func:`popen` or
Benjamin Petersonf650e462010-05-06 23:03:05 +0000554 :func:`fork` and :func:`execv`.
Georg Brandl116aa622007-08-15 14:28:22 +0000555
556 When :func:`unsetenv` is supported, deletion of items in ``os.environ`` is
557 automatically translated into a corresponding call to :func:`unsetenv`; however,
558 calls to :func:`unsetenv` don't update ``os.environ``, so it is actually
559 preferable to delete items of ``os.environ``.
560
Benjamin Petersonf650e462010-05-06 23:03:05 +0000561 Availability: most flavors of Unix, Windows.
562
Georg Brandl116aa622007-08-15 14:28:22 +0000563
564.. _os-newstreams:
565
566File Object Creation
567--------------------
568
Antoine Pitrou11cb9612010-09-15 11:11:28 +0000569These functions create new :term:`file objects <file object>`. (See also :func:`open`.)
Georg Brandl116aa622007-08-15 14:28:22 +0000570
571
572.. function:: fdopen(fd[, mode[, bufsize]])
573
574 .. index:: single: I/O control; buffering
575
576 Return an open file object connected to the file descriptor *fd*. The *mode*
577 and *bufsize* arguments have the same meaning as the corresponding arguments to
Benjamin Petersonf650e462010-05-06 23:03:05 +0000578 the built-in :func:`open` function.
Georg Brandl116aa622007-08-15 14:28:22 +0000579
Georg Brandl55ac8f02007-09-01 13:51:09 +0000580 When specified, the *mode* argument must start with one of the letters
581 ``'r'``, ``'w'``, or ``'a'``, otherwise a :exc:`ValueError` is raised.
Georg Brandl116aa622007-08-15 14:28:22 +0000582
Georg Brandl55ac8f02007-09-01 13:51:09 +0000583 On Unix, when the *mode* argument starts with ``'a'``, the *O_APPEND* flag is
Georg Brandl60203b42010-10-06 10:11:56 +0000584 set on the file descriptor (which the :c:func:`fdopen` implementation already
Georg Brandl55ac8f02007-09-01 13:51:09 +0000585 does on most platforms).
Georg Brandl116aa622007-08-15 14:28:22 +0000586
Benjamin Petersonf650e462010-05-06 23:03:05 +0000587 Availability: Unix, Windows.
588
Georg Brandl116aa622007-08-15 14:28:22 +0000589
Georg Brandl116aa622007-08-15 14:28:22 +0000590.. _os-fd-ops:
591
592File Descriptor Operations
593--------------------------
594
595These functions operate on I/O streams referenced using file descriptors.
596
597File descriptors are small integers corresponding to a file that has been opened
598by the current process. For example, standard input is usually file descriptor
5990, standard output is 1, and standard error is 2. Further files opened by a
600process will then be assigned 3, 4, 5, and so forth. The name "file descriptor"
601is slightly deceptive; on Unix platforms, sockets and pipes are also referenced
602by file descriptors.
603
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000604The :meth:`~file.fileno` method can be used to obtain the file descriptor
Antoine Pitrou11cb9612010-09-15 11:11:28 +0000605associated with a :term:`file object` when required. Note that using the file
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000606descriptor directly will bypass the file object methods, ignoring aspects such
607as internal buffering of data.
Georg Brandl116aa622007-08-15 14:28:22 +0000608
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000609.. data:: AT_SYMLINK_NOFOLLOW
610 AT_EACCESS
611 AT_FDCWD
612 AT_REMOVEDIR
613 AT_SYMLINK_FOLLOW
614 UTIME_NOW
615 UTIME_OMIT
616
617 These parameters are used as flags to the \*at family of functions.
618
619 Availability: Unix.
620
621 .. versionadded:: 3.3
622
623
Georg Brandl116aa622007-08-15 14:28:22 +0000624.. function:: close(fd)
625
Benjamin Petersonf650e462010-05-06 23:03:05 +0000626 Close file descriptor *fd*.
627
628 Availability: Unix, Windows.
Georg Brandl116aa622007-08-15 14:28:22 +0000629
630 .. note::
631
632 This function is intended for low-level I/O and must be applied to a file
Benjamin Petersonfa0d7032009-06-01 22:42:33 +0000633 descriptor as returned by :func:`os.open` or :func:`pipe`. To close a "file
Georg Brandl116aa622007-08-15 14:28:22 +0000634 object" returned by the built-in function :func:`open` or by :func:`popen` or
Benjamin Petersonfa0d7032009-06-01 22:42:33 +0000635 :func:`fdopen`, use its :meth:`~file.close` method.
Georg Brandl116aa622007-08-15 14:28:22 +0000636
637
Christian Heimesfdab48e2008-01-20 09:06:41 +0000638.. function:: closerange(fd_low, fd_high)
639
640 Close all file descriptors from *fd_low* (inclusive) to *fd_high* (exclusive),
Benjamin Petersonf650e462010-05-06 23:03:05 +0000641 ignoring errors. Equivalent to::
Christian Heimesfdab48e2008-01-20 09:06:41 +0000642
Georg Brandlc9a5a0e2009-09-01 07:34:27 +0000643 for fd in range(fd_low, fd_high):
Christian Heimesfdab48e2008-01-20 09:06:41 +0000644 try:
645 os.close(fd)
646 except OSError:
647 pass
648
Benjamin Petersonf650e462010-05-06 23:03:05 +0000649 Availability: Unix, Windows.
650
Christian Heimesfdab48e2008-01-20 09:06:41 +0000651
Georg Brandl81f11302007-12-21 08:45:42 +0000652.. function:: device_encoding(fd)
653
654 Return a string describing the encoding of the device associated with *fd*
655 if it is connected to a terminal; else return :const:`None`.
656
657
Georg Brandl116aa622007-08-15 14:28:22 +0000658.. function:: dup(fd)
659
Benjamin Petersonf650e462010-05-06 23:03:05 +0000660 Return a duplicate of file descriptor *fd*.
661
662 Availability: Unix, Windows.
Georg Brandl116aa622007-08-15 14:28:22 +0000663
664
665.. function:: dup2(fd, fd2)
666
667 Duplicate file descriptor *fd* to *fd2*, closing the latter first if necessary.
Benjamin Petersonf650e462010-05-06 23:03:05 +0000668
Georg Brandlc575c902008-09-13 17:46:05 +0000669 Availability: Unix, Windows.
Georg Brandl116aa622007-08-15 14:28:22 +0000670
671
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000672.. function:: faccessat(dirfd, path, mode, flags=0)
673
674 Like :func:`access` but if *path* is relative, it is taken as relative to *dirfd*.
675 *flags* is optional and can be constructed by ORing together zero or more
676 of these values: :data:`AT_SYMLINK_NOFOLLOW`, :data:`AT_EACCESS`.
677 If *path* is relative and *dirfd* is the special value :data:`AT_FDCWD`, then *path*
678 is interpreted relative to the current working directory.
679
680 Availability: Unix.
681
682 .. versionadded:: 3.3
683
684
Christian Heimes4e30a842007-11-30 22:12:06 +0000685.. function:: fchmod(fd, mode)
686
687 Change the mode of the file given by *fd* to the numeric *mode*. See the docs
Benjamin Petersonf650e462010-05-06 23:03:05 +0000688 for :func:`chmod` for possible values of *mode*.
689
690 Availability: Unix.
Christian Heimes4e30a842007-11-30 22:12:06 +0000691
692
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000693.. function:: fchmodat(dirfd, path, mode, flags=0)
694
695 Like :func:`chmod` but if *path* is relative, it is taken as relative to *dirfd*.
696 *flags* is optional and may be 0 or :data:`AT_SYMLINK_NOFOLLOW`.
697 If *path* is relative and *dirfd* is the special value :data:`AT_FDCWD`, then *path*
698 is interpreted relative to the current working directory.
699
700 Availability: Unix.
701
702 .. versionadded:: 3.3
703
704
Christian Heimes4e30a842007-11-30 22:12:06 +0000705.. function:: fchown(fd, uid, gid)
706
707 Change the owner and group id of the file given by *fd* to the numeric *uid*
708 and *gid*. To leave one of the ids unchanged, set it to -1.
Benjamin Petersonf650e462010-05-06 23:03:05 +0000709
Christian Heimes4e30a842007-11-30 22:12:06 +0000710 Availability: Unix.
711
712
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000713.. function:: fchownat(dirfd, path, uid, gid, flags=0)
714
715 Like :func:`chown` but if *path* is relative, it is taken as relative to *dirfd*.
716 *flags* is optional and may be 0 or :data:`AT_SYMLINK_NOFOLLOW`.
717 If *path* is relative and *dirfd* is the special value :data:`AT_FDCWD`, then *path*
718 is interpreted relative to the current working directory.
719
720 Availability: Unix.
721
722 .. versionadded:: 3.3
723
724
Georg Brandl116aa622007-08-15 14:28:22 +0000725.. function:: fdatasync(fd)
726
727 Force write of file with filedescriptor *fd* to disk. Does not force update of
Benjamin Petersonf650e462010-05-06 23:03:05 +0000728 metadata.
729
730 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +0000731
Benjamin Petersonfa0d7032009-06-01 22:42:33 +0000732 .. note::
733 This function is not available on MacOS.
734
Georg Brandl116aa622007-08-15 14:28:22 +0000735
Antoine Pitrou8250e232011-02-25 23:41:16 +0000736.. function:: fdlistdir(fd)
737
738 Like :func:`listdir`, but uses a file descriptor instead and always returns
739 strings. After execution of this function, *fd* will be closed.
740
741 Availability: Unix.
742
743 .. versionadded:: 3.3
744
745
Ross Lagerwall7807c352011-03-17 20:20:30 +0200746.. function:: fexecve(fd, args, env)
747
748 Execute the program specified by a file descriptor *fd* with arguments given
749 by *args* and environment given by *env*, replacing the current process.
750 *args* and *env* are given as in :func:`execve`.
751
752 Availability: Unix.
753
754 .. versionadded:: 3.3
755
756
Georg Brandl116aa622007-08-15 14:28:22 +0000757.. function:: fpathconf(fd, name)
758
759 Return system configuration information relevant to an open file. *name*
760 specifies the configuration value to retrieve; it may be a string which is the
761 name of a defined system value; these names are specified in a number of
762 standards (POSIX.1, Unix 95, Unix 98, and others). Some platforms define
763 additional names as well. The names known to the host operating system are
764 given in the ``pathconf_names`` dictionary. For configuration variables not
765 included in that mapping, passing an integer for *name* is also accepted.
Georg Brandl116aa622007-08-15 14:28:22 +0000766
767 If *name* is a string and is not known, :exc:`ValueError` is raised. If a
768 specific value for *name* is not supported by the host system, even if it is
769 included in ``pathconf_names``, an :exc:`OSError` is raised with
770 :const:`errno.EINVAL` for the error number.
771
Benjamin Petersonf650e462010-05-06 23:03:05 +0000772 Availability: Unix.
773
Georg Brandl116aa622007-08-15 14:28:22 +0000774
775.. function:: fstat(fd)
776
R. David Murray7b1aae92011-01-24 19:34:58 +0000777 Return status for file descriptor *fd*, like :func:`~os.stat`.
Benjamin Petersonf650e462010-05-06 23:03:05 +0000778
779 Availability: Unix, Windows.
Georg Brandl116aa622007-08-15 14:28:22 +0000780
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000781.. function:: fstatat(dirfd, path, flags=0)
782
783 Like :func:`stat` but if *path* is relative, it is taken as relative to *dirfd*.
784 *flags* is optional and may be 0 or :data:`AT_SYMLINK_NOFOLLOW`.
785 If *path* is relative and *dirfd* is the special value :data:`AT_FDCWD`, then *path*
786 is interpreted relative to the current working directory.
787
788 Availability: Unix.
789
790 .. versionadded:: 3.3
791
Georg Brandl116aa622007-08-15 14:28:22 +0000792
793.. function:: fstatvfs(fd)
794
795 Return information about the filesystem containing the file associated with file
Benjamin Petersonf650e462010-05-06 23:03:05 +0000796 descriptor *fd*, like :func:`statvfs`.
797
798 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +0000799
800
801.. function:: fsync(fd)
802
803 Force write of file with filedescriptor *fd* to disk. On Unix, this calls the
Georg Brandl60203b42010-10-06 10:11:56 +0000804 native :c:func:`fsync` function; on Windows, the MS :c:func:`_commit` function.
Georg Brandl116aa622007-08-15 14:28:22 +0000805
Antoine Pitrou11cb9612010-09-15 11:11:28 +0000806 If you're starting with a buffered Python :term:`file object` *f*, first do
807 ``f.flush()``, and then do ``os.fsync(f.fileno())``, to ensure that all internal
808 buffers associated with *f* are written to disk.
Benjamin Petersonf650e462010-05-06 23:03:05 +0000809
810 Availability: Unix, and Windows.
Georg Brandl116aa622007-08-15 14:28:22 +0000811
812
813.. function:: ftruncate(fd, length)
814
815 Truncate the file corresponding to file descriptor *fd*, so that it is at most
Benjamin Petersonf650e462010-05-06 23:03:05 +0000816 *length* bytes in size.
817
818 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +0000819
820
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000821.. function:: futimesat(dirfd, path, (atime, mtime))
822 futimesat(dirfd, path, None)
823
824 Like :func:`utime` but if *path* is relative, it is taken as relative to *dirfd*.
825 If *path* is relative and *dirfd* is the special value :data:`AT_FDCWD`, then *path*
826 is interpreted relative to the current working directory.
827
828 Availability: Unix.
829
830 .. versionadded:: 3.3
831
832
Ross Lagerwall7807c352011-03-17 20:20:30 +0200833.. function:: futimens(fd, (atime_sec, atime_nsec), (mtime_sec, mtime_nsec))
834 futimens(fd, None, None)
835
836 Updates the timestamps of a file specified by the file descriptor *fd*, with
837 nanosecond precision.
838 The second form sets *atime* and *mtime* to the current time.
839 If *atime_nsec* or *mtime_nsec* is specified as :data:`UTIME_NOW`, the corresponding
840 timestamp is updated to the current time.
841 If *atime_nsec* or *mtime_nsec* is specified as :data:`UTIME_OMIT`, the corresponding
842 timestamp is not updated.
843
844 Availability: Unix.
845
846 .. versionadded:: 3.3
847
848
849.. data:: UTIME_NOW
850 UTIME_OMIT
851
852 Flags used with :func:`futimens` to specify that the timestamp must be
853 updated either to the current time or not updated at all.
854
855 Availability: Unix.
856
857 .. versionadded:: 3.3
858
859
860.. function:: futimes(fd, (atime, mtime))
861 futimes(fd, None)
862
863 Set the access and modified time of the file specified by the file
864 descriptor *fd* to the given values. If the second form is used, set the
865 access and modified times to the current time.
866
867 Availability: Unix.
868
869 .. versionadded:: 3.3
870
871
Georg Brandl116aa622007-08-15 14:28:22 +0000872.. function:: isatty(fd)
873
874 Return ``True`` if the file descriptor *fd* is open and connected to a
Benjamin Petersonf650e462010-05-06 23:03:05 +0000875 tty(-like) device, else ``False``.
876
877 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +0000878
879
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000880.. function:: linkat(srcfd, srcpath, dstfd, dstpath, flags=0)
881
882 Like :func:`link` but if *srcpath* is relative, it is taken as relative to *srcfd*
883 and if *dstpath* is relative, it is taken as relative to *dstfd*.
884 *flags* is optional and may be 0 or :data:`AT_SYMLINK_FOLLOW`.
885 If *srcpath* is relative and *srcfd* is the special value :data:`AT_FDCWD`, then
886 *srcpath* is interpreted relative to the current working directory. This
887 also applies for *dstpath*.
888
889 Availability: Unix.
890
891 .. versionadded:: 3.3
892
893
Ross Lagerwall7807c352011-03-17 20:20:30 +0200894.. function:: lockf(fd, cmd, len)
895
896 Apply, test or remove a POSIX lock on an open file descriptor.
897 *fd* is an open file descriptor.
898 *cmd* specifies the command to use - one of :data:`F_LOCK`, :data:`F_TLOCK`,
899 :data:`F_ULOCK` or :data:`F_TEST`.
900 *len* specifies the section of the file to lock.
901
902 Availability: Unix.
903
904 .. versionadded:: 3.3
905
906
907.. data:: F_LOCK
908 F_TLOCK
909 F_ULOCK
910 F_TEST
911
912 Flags that specify what action :func:`lockf` will take.
913
914 Availability: Unix.
915
916 .. versionadded:: 3.3
917
Georg Brandl116aa622007-08-15 14:28:22 +0000918.. function:: lseek(fd, pos, how)
919
Christian Heimesfaf2f632008-01-06 16:59:19 +0000920 Set the current position of file descriptor *fd* to position *pos*, modified
921 by *how*: :const:`SEEK_SET` or ``0`` to set the position relative to the
922 beginning of the file; :const:`SEEK_CUR` or ``1`` to set it relative to the
923 current position; :const:`os.SEEK_END` or ``2`` to set it relative to the end of
Benjamin Petersonf650e462010-05-06 23:03:05 +0000924 the file.
925
926 Availability: Unix, Windows.
Georg Brandl116aa622007-08-15 14:28:22 +0000927
928
Georg Brandl8569e582010-05-19 20:57:08 +0000929.. data:: SEEK_SET
930 SEEK_CUR
931 SEEK_END
932
933 Parameters to the :func:`lseek` function. Their values are 0, 1, and 2,
934 respectively. Availability: Windows, Unix.
935
936
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000937.. function:: mkdirat(dirfd, path, mode=0o777)
938
939 Like :func:`mkdir` but if *path* is relative, it is taken as relative to *dirfd*.
940 If *path* is relative and *dirfd* is the special value :data:`AT_FDCWD`, then *path*
941 is interpreted relative to the current working directory.
942
943 Availability: Unix.
944
945 .. versionadded:: 3.3
946
947
948.. function:: mkfifoat(dirfd, path, mode=0o666)
949
950 Like :func:`mkfifo` but if *path* is relative, it is taken as relative to *dirfd*.
951 If *path* is relative and *dirfd* is the special value :data:`AT_FDCWD`, then *path*
952 is interpreted relative to the current working directory.
953
954 Availability: Unix.
955
956 .. versionadded:: 3.3
957
958
959.. function:: mknodat(dirfd, path, mode=0o600, device=0)
960
961 Like :func:`mknod` but if *path* is relative, it is taken as relative to *dirfd*.
962 If *path* is relative and *dirfd* is the special value :data:`AT_FDCWD`, then *path*
963 is interpreted relative to the current working directory.
964
965 Availability: Unix.
966
967 .. versionadded:: 3.3
968
969
Georg Brandl116aa622007-08-15 14:28:22 +0000970.. function:: open(file, flags[, mode])
971
Georg Brandlf4a41232008-05-26 17:55:52 +0000972 Open the file *file* and set various flags according to *flags* and possibly
973 its mode according to *mode*. The default *mode* is ``0o777`` (octal), and
974 the current umask value is first masked out. Return the file descriptor for
Benjamin Petersonf650e462010-05-06 23:03:05 +0000975 the newly opened file.
Georg Brandl116aa622007-08-15 14:28:22 +0000976
977 For a description of the flag and mode values, see the C run-time documentation;
978 flag constants (like :const:`O_RDONLY` and :const:`O_WRONLY`) are defined in
Georg Brandl8569e582010-05-19 20:57:08 +0000979 this module too (see :ref:`open-constants`). In particular, on Windows adding
980 :const:`O_BINARY` is needed to open files in binary mode.
Georg Brandl116aa622007-08-15 14:28:22 +0000981
Benjamin Petersonf650e462010-05-06 23:03:05 +0000982 Availability: Unix, Windows.
983
Georg Brandl116aa622007-08-15 14:28:22 +0000984 .. note::
985
Georg Brandl502d9a52009-07-26 15:02:41 +0000986 This function is intended for low-level I/O. For normal usage, use the
Antoine Pitrou11cb9612010-09-15 11:11:28 +0000987 built-in function :func:`open`, which returns a :term:`file object` with
Jeroen Ruigrok van der Werven9c558bc2010-07-13 14:47:01 +0000988 :meth:`~file.read` and :meth:`~file.write` methods (and many more). To
Antoine Pitrou11cb9612010-09-15 11:11:28 +0000989 wrap a file descriptor in a file object, use :func:`fdopen`.
Georg Brandl116aa622007-08-15 14:28:22 +0000990
991
Antoine Pitrouf65132d2011-02-25 23:25:17 +0000992.. function:: openat(dirfd, path, flags, mode=0o777)
993
994 Like :func:`open` but if *path* is relative, it is taken as relative to *dirfd*.
995 If *path* is relative and *dirfd* is the special value :data:`AT_FDCWD`, then *path*
996 is interpreted relative to the current working directory.
997
998 Availability: Unix.
999
1000 .. versionadded:: 3.3
1001
1002
Georg Brandl116aa622007-08-15 14:28:22 +00001003.. function:: openpty()
1004
1005 .. index:: module: pty
1006
1007 Open a new pseudo-terminal pair. Return a pair of file descriptors ``(master,
1008 slave)`` for the pty and the tty, respectively. For a (slightly) more portable
Benjamin Petersonf650e462010-05-06 23:03:05 +00001009 approach, use the :mod:`pty` module.
1010
1011 Availability: some flavors of Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00001012
1013
1014.. function:: pipe()
1015
1016 Create a pipe. Return a pair of file descriptors ``(r, w)`` usable for reading
Benjamin Petersonf650e462010-05-06 23:03:05 +00001017 and writing, respectively.
1018
1019 Availability: Unix, Windows.
Georg Brandl116aa622007-08-15 14:28:22 +00001020
1021
Ross Lagerwall7807c352011-03-17 20:20:30 +02001022.. function:: posix_fallocate(fd, offset, len)
1023
1024 Ensures that enough disk space is allocated for the file specified by *fd*
1025 starting from *offset* and continuing for *len* bytes.
1026
1027 Availability: Unix.
1028
1029 .. versionadded:: 3.3
1030
1031
1032.. function:: posix_fadvise(fd, offset, len, advice)
1033
1034 Announces an intention to access data in a specific pattern thus allowing
1035 the kernel to make optimizations.
1036 The advice applies to the region of the file specified by *fd* starting at
1037 *offset* and continuing for *len* bytes.
1038 *advice* is one of :data:`POSIX_FADV_NORMAL`, :data:`POSIX_FADV_SEQUENTIAL`,
1039 :data:`POSIX_FADV_RANDOM`, :data:`POSIX_FADV_NOREUSE`,
1040 :data:`POSIX_FADV_WILLNEED` or :data:`POSIX_FADV_DONTNEED`.
1041
1042 Availability: Unix.
1043
1044 .. versionadded:: 3.3
1045
1046
1047.. data:: POSIX_FADV_NORMAL
1048 POSIX_FADV_SEQUENTIAL
1049 POSIX_FADV_RANDOM
1050 POSIX_FADV_NOREUSE
1051 POSIX_FADV_WILLNEED
1052 POSIX_FADV_DONTNEED
1053
1054 Flags that can be used in *advice* in :func:`posix_fadvise` that specify
1055 the access pattern that is likely to be used.
1056
1057 Availability: Unix.
1058
1059 .. versionadded:: 3.3
1060
1061
1062.. function:: pread(fd, buffersize, offset)
1063
1064 Read from a file descriptor, *fd*, at a position of *offset*. It will read up
1065 to *buffersize* number of bytes. The file offset remains unchanged.
1066
1067 Availability: Unix.
1068
1069 .. versionadded:: 3.3
1070
1071
1072.. function:: pwrite(fd, string, offset)
1073
1074 Write *string* to a file descriptor, *fd*, from *offset*, leaving the file
1075 offset unchanged.
1076
1077 Availability: Unix.
1078
1079 .. versionadded:: 3.3
1080
1081
Georg Brandl116aa622007-08-15 14:28:22 +00001082.. function:: read(fd, n)
1083
Georg Brandlb90be692009-07-29 16:14:16 +00001084 Read at most *n* bytes from file descriptor *fd*. Return a bytestring containing the
Georg Brandl116aa622007-08-15 14:28:22 +00001085 bytes read. If the end of the file referred to by *fd* has been reached, an
Benjamin Petersonf650e462010-05-06 23:03:05 +00001086 empty bytes object is returned.
1087
1088 Availability: Unix, Windows.
Georg Brandl116aa622007-08-15 14:28:22 +00001089
1090 .. note::
1091
1092 This function is intended for low-level I/O and must be applied to a file
Benjamin Petersonfa0d7032009-06-01 22:42:33 +00001093 descriptor as returned by :func:`os.open` or :func:`pipe`. To read a "file object"
Georg Brandl116aa622007-08-15 14:28:22 +00001094 returned by the built-in function :func:`open` or by :func:`popen` or
Benjamin Petersonfa0d7032009-06-01 22:42:33 +00001095 :func:`fdopen`, or :data:`sys.stdin`, use its :meth:`~file.read` or
1096 :meth:`~file.readline` methods.
Georg Brandl116aa622007-08-15 14:28:22 +00001097
1098
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00001099.. function:: sendfile(out, in, offset, nbytes)
1100 sendfile(out, in, offset, nbytes, headers=None, trailers=None, flags=0)
1101
1102 Copy *nbytes* bytes from file descriptor *in* to file descriptor *out*
1103 starting at *offset*.
1104 Return the number of bytes sent. When EOF is reached return 0.
1105
1106 The first function notation is supported by all platforms that define
1107 :func:`sendfile`.
1108
1109 On Linux, if *offset* is given as ``None``, the bytes are read from the
1110 current position of *in* and the position of *in* is updated.
1111
1112 The second case may be used on Mac OS X and FreeBSD where *headers* and
1113 *trailers* are arbitrary sequences of buffers that are written before and
1114 after the data from *in* is written. It returns the same as the first case.
1115
1116 On Mac OS X and FreeBSD, a value of 0 for *nbytes* specifies to send until
1117 the end of *in* is reached.
1118
1119 On Solaris, *out* may be the file descriptor of a regular file or the file
1120 descriptor of a socket. On all other platforms, *out* must be the file
1121 descriptor of an open socket.
1122
1123 Availability: Unix.
1124
1125 .. versionadded:: 3.3
1126
1127
1128.. data:: SF_NODISKIO
1129 SF_MNOWAIT
1130 SF_SYNC
1131
1132 Parameters to the :func:`sendfile` function, if the implementation supports
1133 them.
1134
1135 Availability: Unix.
1136
1137 .. versionadded:: 3.3
1138
1139
Antoine Pitrouf65132d2011-02-25 23:25:17 +00001140.. function:: readlinkat(dirfd, path)
1141
1142 Like :func:`readlink` but if *path* is relative, it is taken as relative to *dirfd*.
1143 If *path* is relative and *dirfd* is the special value :data:`AT_FDCWD`, then *path*
1144 is interpreted relative to the current working directory.
1145
1146 Availability: Unix.
1147
1148 .. versionadded:: 3.3
1149
1150
1151.. function:: renameat(olddirfd, oldpath, newdirfd, newpath)
1152
1153 Like :func:`rename` but if *oldpath* is relative, it is taken as relative to
1154 *olddirfd* and if *newpath* is relative, it is taken as relative to *newdirfd*.
1155 If *oldpath* is relative and *olddirfd* is the special value :data:`AT_FDCWD`, then
1156 *oldpath* is interpreted relative to the current working directory. This
1157 also applies for *newpath*.
1158
1159 Availability: Unix.
1160
1161 .. versionadded:: 3.3
1162
1163
1164.. function:: symlinkat(src, dstfd, dst)
1165
1166 Like :func:`symlink` but if *dst* is relative, it is taken as relative to *dstfd*.
1167 If *dst* is relative and *dstfd* is the special value :data:`AT_FDCWD`, then *dst*
1168 is interpreted relative to the current working directory.
1169
1170 Availability: Unix.
1171
1172 .. versionadded:: 3.3
1173
1174
Ross Lagerwall7807c352011-03-17 20:20:30 +02001175.. function:: readv(fd, buffers)
1176
1177 Read from a file descriptor into a number of writable buffers. *buffers* is
1178 an arbitrary sequence of writable buffers. Returns the total number of bytes
1179 read.
1180
1181 Availability: Unix.
1182
1183 .. versionadded:: 3.3
1184
1185
Georg Brandl116aa622007-08-15 14:28:22 +00001186.. function:: tcgetpgrp(fd)
1187
1188 Return the process group associated with the terminal given by *fd* (an open
Benjamin Petersonf650e462010-05-06 23:03:05 +00001189 file descriptor as returned by :func:`os.open`).
1190
1191 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00001192
1193
1194.. function:: tcsetpgrp(fd, pg)
1195
1196 Set the process group associated with the terminal given by *fd* (an open file
Benjamin Petersonf650e462010-05-06 23:03:05 +00001197 descriptor as returned by :func:`os.open`) to *pg*.
1198
1199 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00001200
1201
1202.. function:: ttyname(fd)
1203
1204 Return a string which specifies the terminal device associated with
Georg Brandl9afde1c2007-11-01 20:32:30 +00001205 file descriptor *fd*. If *fd* is not associated with a terminal device, an
Benjamin Petersonf650e462010-05-06 23:03:05 +00001206 exception is raised.
1207
1208 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00001209
1210
Antoine Pitrouf65132d2011-02-25 23:25:17 +00001211.. function:: unlinkat(dirfd, path, flags=0)
1212
1213 Like :func:`unlink` but if *path* is relative, it is taken as relative to *dirfd*.
1214 *flags* is optional and may be 0 or :data:`AT_REMOVEDIR`. If :data:`AT_REMOVEDIR` is
1215 specified, :func:`unlinkat` behaves like :func:`rmdir`.
1216 If *path* is relative and *dirfd* is the special value :data:`AT_FDCWD`, then *path*
1217 is interpreted relative to the current working directory.
1218
1219 Availability: Unix.
1220
1221 .. versionadded:: 3.3
1222
1223
1224.. function:: utimensat(dirfd, path, (atime_sec, atime_nsec), (mtime_sec, mtime_nsec), flags)
1225 utimensat(dirfd, path, None, None, flags)
1226
1227 Updates the timestamps of a file with nanosecond precision.
1228 The second form sets *atime* and *mtime* to the current time.
1229 If *atime_nsec* or *mtime_nsec* is specified as :data:`UTIME_NOW`, the corresponding
1230 timestamp is updated to the current time.
1231 If *atime_nsec* or *mtime_nsec* is specified as :data:`UTIME_OMIT`, the corresponding
1232 timestamp is not updated.
1233 If *path* is relative, it is taken as relative to *dirfd*.
1234 *flags* is optional and may be 0 or :data:`AT_SYMLINK_NOFOLLOW`.
1235 If *path* is relative and *dirfd* is the special value :data:`AT_FDCWD`, then *path*
1236 is interpreted relative to the current working directory.
1237
1238 Availability: Unix.
1239
1240 .. versionadded:: 3.3
1241
1242
Georg Brandl116aa622007-08-15 14:28:22 +00001243.. function:: write(fd, str)
1244
Georg Brandlb90be692009-07-29 16:14:16 +00001245 Write the bytestring in *str* to file descriptor *fd*. Return the number of
Benjamin Petersonf650e462010-05-06 23:03:05 +00001246 bytes actually written.
1247
1248 Availability: Unix, Windows.
Georg Brandl116aa622007-08-15 14:28:22 +00001249
1250 .. note::
1251
1252 This function is intended for low-level I/O and must be applied to a file
Benjamin Petersonfa0d7032009-06-01 22:42:33 +00001253 descriptor as returned by :func:`os.open` or :func:`pipe`. To write a "file
Georg Brandl116aa622007-08-15 14:28:22 +00001254 object" returned by the built-in function :func:`open` or by :func:`popen` or
Benjamin Petersonfa0d7032009-06-01 22:42:33 +00001255 :func:`fdopen`, or :data:`sys.stdout` or :data:`sys.stderr`, use its
1256 :meth:`~file.write` method.
Georg Brandl116aa622007-08-15 14:28:22 +00001257
Georg Brandl8569e582010-05-19 20:57:08 +00001258
Ross Lagerwall7807c352011-03-17 20:20:30 +02001259.. function:: writev(fd, buffers)
1260
1261 Write the the contents of *buffers* to file descriptor *fd*, where *buffers*
1262 is an arbitrary sequence of buffers.
1263 Returns the total number of bytes written.
1264
1265 Availability: Unix.
1266
1267 .. versionadded:: 3.3
1268
1269
Georg Brandl8569e582010-05-19 20:57:08 +00001270.. _open-constants:
1271
1272``open()`` flag constants
1273~~~~~~~~~~~~~~~~~~~~~~~~~
1274
Georg Brandlaf265f42008-12-07 15:06:20 +00001275The following constants are options for the *flags* parameter to the
Benjamin Petersonfa0d7032009-06-01 22:42:33 +00001276:func:`~os.open` function. They can be combined using the bitwise OR operator
Georg Brandlaf265f42008-12-07 15:06:20 +00001277``|``. Some of them are not available on all platforms. For descriptions of
1278their availability and use, consult the :manpage:`open(2)` manual page on Unix
Doug Hellmanneb097fc2009-09-20 20:56:56 +00001279or `the MSDN <http://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Windows.
Georg Brandl116aa622007-08-15 14:28:22 +00001280
1281
1282.. data:: O_RDONLY
1283 O_WRONLY
1284 O_RDWR
1285 O_APPEND
1286 O_CREAT
1287 O_EXCL
1288 O_TRUNC
1289
Georg Brandlaf265f42008-12-07 15:06:20 +00001290 These constants are available on Unix and Windows.
Georg Brandl116aa622007-08-15 14:28:22 +00001291
1292
1293.. data:: O_DSYNC
1294 O_RSYNC
1295 O_SYNC
1296 O_NDELAY
1297 O_NONBLOCK
1298 O_NOCTTY
1299 O_SHLOCK
1300 O_EXLOCK
1301
Georg Brandlaf265f42008-12-07 15:06:20 +00001302 These constants are only available on Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00001303
1304
1305.. data:: O_BINARY
Guido van Rossum0d3fb8a2007-11-26 23:23:18 +00001306 O_NOINHERIT
Georg Brandl116aa622007-08-15 14:28:22 +00001307 O_SHORT_LIVED
1308 O_TEMPORARY
1309 O_RANDOM
1310 O_SEQUENTIAL
1311 O_TEXT
1312
Georg Brandlaf265f42008-12-07 15:06:20 +00001313 These constants are only available on Windows.
Georg Brandl116aa622007-08-15 14:28:22 +00001314
1315
Alexandre Vassalottibee32532008-05-16 18:15:12 +00001316.. data:: O_ASYNC
1317 O_DIRECT
Guido van Rossum0d3fb8a2007-11-26 23:23:18 +00001318 O_DIRECTORY
1319 O_NOFOLLOW
1320 O_NOATIME
1321
Georg Brandlaf265f42008-12-07 15:06:20 +00001322 These constants are GNU extensions and not present if they are not defined by
1323 the C library.
Guido van Rossum0d3fb8a2007-11-26 23:23:18 +00001324
1325
Georg Brandl116aa622007-08-15 14:28:22 +00001326.. _os-file-dir:
1327
1328Files and Directories
1329---------------------
1330
Georg Brandl116aa622007-08-15 14:28:22 +00001331.. function:: access(path, mode)
1332
1333 Use the real uid/gid to test for access to *path*. Note that most operations
1334 will use the effective uid/gid, therefore this routine can be used in a
1335 suid/sgid environment to test if the invoking user has the specified access to
1336 *path*. *mode* should be :const:`F_OK` to test the existence of *path*, or it
1337 can be the inclusive OR of one or more of :const:`R_OK`, :const:`W_OK`, and
1338 :const:`X_OK` to test permissions. Return :const:`True` if access is allowed,
1339 :const:`False` if not. See the Unix man page :manpage:`access(2)` for more
Benjamin Petersonf650e462010-05-06 23:03:05 +00001340 information.
1341
1342 Availability: Unix, Windows.
Georg Brandl116aa622007-08-15 14:28:22 +00001343
1344 .. note::
1345
Georg Brandl502d9a52009-07-26 15:02:41 +00001346 Using :func:`access` to check if a user is authorized to e.g. open a file
1347 before actually doing so using :func:`open` creates a security hole,
1348 because the user might exploit the short time interval between checking
Benjamin Peterson249b5082011-05-20 11:41:13 -05001349 and opening the file to manipulate it. It's preferable to use :term:`EAFP`
1350 techniques. For example::
1351
1352 if os.access("myfile", os.R_OK):
1353 with open("myfile") as fp:
1354 return fp.read()
1355 return "some default data"
1356
1357 is better written as::
1358
1359 try:
1360 fp = open("myfile")
Benjamin Peterson23409862011-05-20 11:49:06 -05001361 except IOError as e:
Benjamin Peterson249b5082011-05-20 11:41:13 -05001362 if e.errno == errno.EACCESS:
1363 return "some default data"
1364 # Not a permission error.
1365 raise
1366 else:
1367 with fp:
1368 return fp.read()
Georg Brandl116aa622007-08-15 14:28:22 +00001369
1370 .. note::
1371
1372 I/O operations may fail even when :func:`access` indicates that they would
1373 succeed, particularly for operations on network filesystems which may have
1374 permissions semantics beyond the usual POSIX permission-bit model.
1375
1376
1377.. data:: F_OK
1378
1379 Value to pass as the *mode* parameter of :func:`access` to test the existence of
1380 *path*.
1381
1382
1383.. data:: R_OK
1384
1385 Value to include in the *mode* parameter of :func:`access` to test the
1386 readability of *path*.
1387
1388
1389.. data:: W_OK
1390
1391 Value to include in the *mode* parameter of :func:`access` to test the
1392 writability of *path*.
1393
1394
1395.. data:: X_OK
1396
1397 Value to include in the *mode* parameter of :func:`access` to determine if
1398 *path* can be executed.
1399
1400
1401.. function:: chdir(path)
1402
1403 .. index:: single: directory; changing
1404
Benjamin Petersonf650e462010-05-06 23:03:05 +00001405 Change the current working directory to *path*.
1406
1407 Availability: Unix, Windows.
Georg Brandl116aa622007-08-15 14:28:22 +00001408
1409
1410.. function:: fchdir(fd)
1411
1412 Change the current working directory to the directory represented by the file
1413 descriptor *fd*. The descriptor must refer to an opened directory, not an open
Benjamin Petersonf650e462010-05-06 23:03:05 +00001414 file.
1415
1416 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00001417
Georg Brandl116aa622007-08-15 14:28:22 +00001418
1419.. function:: getcwd()
1420
Martin v. Löwis011e8422009-05-05 04:43:17 +00001421 Return a string representing the current working directory.
Benjamin Petersonf650e462010-05-06 23:03:05 +00001422
Martin v. Löwis011e8422009-05-05 04:43:17 +00001423 Availability: Unix, Windows.
Georg Brandl116aa622007-08-15 14:28:22 +00001424
Benjamin Petersonf650e462010-05-06 23:03:05 +00001425
Martin v. Löwisa731b992008-10-07 06:36:31 +00001426.. function:: getcwdb()
Georg Brandl116aa622007-08-15 14:28:22 +00001427
Georg Brandl76e55382008-10-08 16:34:57 +00001428 Return a bytestring representing the current working directory.
Benjamin Petersonf650e462010-05-06 23:03:05 +00001429
Georg Brandlc575c902008-09-13 17:46:05 +00001430 Availability: Unix, Windows.
Georg Brandl116aa622007-08-15 14:28:22 +00001431
Georg Brandl116aa622007-08-15 14:28:22 +00001432
1433.. function:: chflags(path, flags)
1434
1435 Set the flags of *path* to the numeric *flags*. *flags* may take a combination
1436 (bitwise OR) of the following values (as defined in the :mod:`stat` module):
1437
R David Murray30178062011-03-10 17:18:33 -05001438 * :data:`stat.UF_NODUMP`
1439 * :data:`stat.UF_IMMUTABLE`
1440 * :data:`stat.UF_APPEND`
1441 * :data:`stat.UF_OPAQUE`
1442 * :data:`stat.UF_NOUNLINK`
1443 * :data:`stat.SF_ARCHIVED`
1444 * :data:`stat.SF_IMMUTABLE`
1445 * :data:`stat.SF_APPEND`
1446 * :data:`stat.SF_NOUNLINK`
1447 * :data:`stat.SF_SNAPSHOT`
Georg Brandl116aa622007-08-15 14:28:22 +00001448
Georg Brandlc575c902008-09-13 17:46:05 +00001449 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00001450
Georg Brandl116aa622007-08-15 14:28:22 +00001451
1452.. function:: chroot(path)
1453
1454 Change the root directory of the current process to *path*. Availability:
Georg Brandlc575c902008-09-13 17:46:05 +00001455 Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00001456
Georg Brandl116aa622007-08-15 14:28:22 +00001457
1458.. function:: chmod(path, mode)
1459
1460 Change the mode of *path* to the numeric *mode*. *mode* may take one of the
Christian Heimesfaf2f632008-01-06 16:59:19 +00001461 following values (as defined in the :mod:`stat` module) or bitwise ORed
Georg Brandl116aa622007-08-15 14:28:22 +00001462 combinations of them:
1463
Alexandre Vassalottic22c6f22009-07-21 00:51:58 +00001464 * :data:`stat.S_ISUID`
1465 * :data:`stat.S_ISGID`
1466 * :data:`stat.S_ENFMT`
1467 * :data:`stat.S_ISVTX`
1468 * :data:`stat.S_IREAD`
1469 * :data:`stat.S_IWRITE`
1470 * :data:`stat.S_IEXEC`
1471 * :data:`stat.S_IRWXU`
1472 * :data:`stat.S_IRUSR`
1473 * :data:`stat.S_IWUSR`
1474 * :data:`stat.S_IXUSR`
1475 * :data:`stat.S_IRWXG`
1476 * :data:`stat.S_IRGRP`
1477 * :data:`stat.S_IWGRP`
1478 * :data:`stat.S_IXGRP`
1479 * :data:`stat.S_IRWXO`
1480 * :data:`stat.S_IROTH`
1481 * :data:`stat.S_IWOTH`
1482 * :data:`stat.S_IXOTH`
Georg Brandl116aa622007-08-15 14:28:22 +00001483
Georg Brandlc575c902008-09-13 17:46:05 +00001484 Availability: Unix, Windows.
Georg Brandl116aa622007-08-15 14:28:22 +00001485
1486 .. note::
1487
1488 Although Windows supports :func:`chmod`, you can only set the file's read-only
1489 flag with it (via the ``stat.S_IWRITE`` and ``stat.S_IREAD``
1490 constants or a corresponding integer value). All other bits are
1491 ignored.
1492
1493
1494.. function:: chown(path, uid, gid)
1495
1496 Change the owner and group id of *path* to the numeric *uid* and *gid*. To leave
Benjamin Petersonf650e462010-05-06 23:03:05 +00001497 one of the ids unchanged, set it to -1.
1498
1499 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00001500
1501
1502.. function:: lchflags(path, flags)
1503
1504 Set the flags of *path* to the numeric *flags*, like :func:`chflags`, but do not
Benjamin Petersonf650e462010-05-06 23:03:05 +00001505 follow symbolic links.
1506
1507 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00001508
Georg Brandl116aa622007-08-15 14:28:22 +00001509
Christian Heimes93852662007-12-01 12:22:32 +00001510.. function:: lchmod(path, mode)
1511
1512 Change the mode of *path* to the numeric *mode*. If path is a symlink, this
1513 affects the symlink rather than the target. See the docs for :func:`chmod`
Benjamin Petersonf650e462010-05-06 23:03:05 +00001514 for possible values of *mode*.
1515
1516 Availability: Unix.
Christian Heimes93852662007-12-01 12:22:32 +00001517
Christian Heimes93852662007-12-01 12:22:32 +00001518
Georg Brandl116aa622007-08-15 14:28:22 +00001519.. function:: lchown(path, uid, gid)
1520
Christian Heimesfaf2f632008-01-06 16:59:19 +00001521 Change the owner and group id of *path* to the numeric *uid* and *gid*. This
Benjamin Petersonf650e462010-05-06 23:03:05 +00001522 function will not follow symbolic links.
1523
1524 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00001525
Georg Brandl116aa622007-08-15 14:28:22 +00001526
Benjamin Peterson5879d412009-03-30 14:51:56 +00001527.. function:: link(source, link_name)
Georg Brandl116aa622007-08-15 14:28:22 +00001528
Benjamin Petersonf650e462010-05-06 23:03:05 +00001529 Create a hard link pointing to *source* named *link_name*.
1530
Brian Curtin1b9df392010-11-24 20:24:31 +00001531 Availability: Unix, Windows.
1532
1533 .. versionchanged:: 3.2
1534 Added Windows support.
Georg Brandl116aa622007-08-15 14:28:22 +00001535
1536
Martin v. Löwis9c71f902010-07-24 10:09:11 +00001537.. function:: listdir(path='.')
Georg Brandl116aa622007-08-15 14:28:22 +00001538
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00001539 Return a list containing the names of the entries in the directory given by
Martin v. Löwis9c71f902010-07-24 10:09:11 +00001540 *path* (default: ``'.'``). The list is in arbitrary order. It does not include the special
Benjamin Peterson4469d0c2008-11-30 22:46:23 +00001541 entries ``'.'`` and ``'..'`` even if they are present in the directory.
Georg Brandl116aa622007-08-15 14:28:22 +00001542
Martin v. Löwis011e8422009-05-05 04:43:17 +00001543 This function can be called with a bytes or string argument, and returns
1544 filenames of the same datatype.
Georg Brandl116aa622007-08-15 14:28:22 +00001545
Benjamin Petersonf650e462010-05-06 23:03:05 +00001546 Availability: Unix, Windows.
1547
Martin v. Löwisc9e1c7d2010-07-23 12:16:41 +00001548 .. versionchanged:: 3.2
1549 The *path* parameter became optional.
Georg Brandl116aa622007-08-15 14:28:22 +00001550
1551.. function:: lstat(path)
1552
R. David Murray7b1aae92011-01-24 19:34:58 +00001553 Perform the equivalent of an :c:func:`lstat` system call on the given path.
1554 Similar to :func:`~os.stat`, but does not follow symbolic links. On
1555 platforms that do not support symbolic links, this is an alias for
1556 :func:`~os.stat`.
Brian Curtinc7395692010-07-09 15:15:09 +00001557
Georg Brandlb3823372010-07-10 08:58:37 +00001558 .. versionchanged:: 3.2
1559 Added support for Windows 6.0 (Vista) symbolic links.
Georg Brandl116aa622007-08-15 14:28:22 +00001560
1561
Ross Lagerwall7807c352011-03-17 20:20:30 +02001562.. function:: lutimes(path, (atime, mtime))
1563 lutimes(path, None)
1564
1565 Like :func:`utime`, but if *path* is a symbolic link, it is not
1566 dereferenced.
1567
1568 Availability: Unix.
1569
1570 .. versionadded:: 3.3
1571
1572
Georg Brandl116aa622007-08-15 14:28:22 +00001573.. function:: mkfifo(path[, mode])
1574
Georg Brandlf4a41232008-05-26 17:55:52 +00001575 Create a FIFO (a named pipe) named *path* with numeric mode *mode*. The
1576 default *mode* is ``0o666`` (octal). The current umask value is first masked
Benjamin Petersonf650e462010-05-06 23:03:05 +00001577 out from the mode.
Georg Brandl116aa622007-08-15 14:28:22 +00001578
1579 FIFOs are pipes that can be accessed like regular files. FIFOs exist until they
1580 are deleted (for example with :func:`os.unlink`). Generally, FIFOs are used as
1581 rendezvous between "client" and "server" type processes: the server opens the
1582 FIFO for reading, and the client opens it for writing. Note that :func:`mkfifo`
1583 doesn't open the FIFO --- it just creates the rendezvous point.
1584
Benjamin Petersonf650e462010-05-06 23:03:05 +00001585 Availability: Unix.
1586
Georg Brandl116aa622007-08-15 14:28:22 +00001587
Georg Brandl18244152009-09-02 20:34:52 +00001588.. function:: mknod(filename[, mode=0o600[, device]])
Georg Brandl116aa622007-08-15 14:28:22 +00001589
1590 Create a filesystem node (file, device special file or named pipe) named
Georg Brandl18244152009-09-02 20:34:52 +00001591 *filename*. *mode* specifies both the permissions to use and the type of node
1592 to be created, being combined (bitwise OR) with one of ``stat.S_IFREG``,
1593 ``stat.S_IFCHR``, ``stat.S_IFBLK``, and ``stat.S_IFIFO`` (those constants are
1594 available in :mod:`stat`). For ``stat.S_IFCHR`` and ``stat.S_IFBLK``,
1595 *device* defines the newly created device special file (probably using
Georg Brandl116aa622007-08-15 14:28:22 +00001596 :func:`os.makedev`), otherwise it is ignored.
1597
Georg Brandl116aa622007-08-15 14:28:22 +00001598
1599.. function:: major(device)
1600
Christian Heimesfaf2f632008-01-06 16:59:19 +00001601 Extract the device major number from a raw device number (usually the
Georg Brandl60203b42010-10-06 10:11:56 +00001602 :attr:`st_dev` or :attr:`st_rdev` field from :c:type:`stat`).
Georg Brandl116aa622007-08-15 14:28:22 +00001603
Georg Brandl116aa622007-08-15 14:28:22 +00001604
1605.. function:: minor(device)
1606
Christian Heimesfaf2f632008-01-06 16:59:19 +00001607 Extract the device minor number from a raw device number (usually the
Georg Brandl60203b42010-10-06 10:11:56 +00001608 :attr:`st_dev` or :attr:`st_rdev` field from :c:type:`stat`).
Georg Brandl116aa622007-08-15 14:28:22 +00001609
Georg Brandl116aa622007-08-15 14:28:22 +00001610
1611.. function:: makedev(major, minor)
1612
Christian Heimesfaf2f632008-01-06 16:59:19 +00001613 Compose a raw device number from the major and minor device numbers.
Georg Brandl116aa622007-08-15 14:28:22 +00001614
Georg Brandl116aa622007-08-15 14:28:22 +00001615
1616.. function:: mkdir(path[, mode])
1617
Georg Brandlf4a41232008-05-26 17:55:52 +00001618 Create a directory named *path* with numeric mode *mode*. The default *mode*
1619 is ``0o777`` (octal). On some systems, *mode* is ignored. Where it is used,
Benjamin Petersond7c3ed52010-06-27 22:32:30 +00001620 the current umask value is first masked out. If the directory already
1621 exists, :exc:`OSError` is raised.
Georg Brandl116aa622007-08-15 14:28:22 +00001622
Guido van Rossum2cc30da2007-11-02 23:46:40 +00001623 It is also possible to create temporary directories; see the
1624 :mod:`tempfile` module's :func:`tempfile.mkdtemp` function.
1625
Benjamin Petersonf650e462010-05-06 23:03:05 +00001626 Availability: Unix, Windows.
1627
Georg Brandl116aa622007-08-15 14:28:22 +00001628
Georg Brandlc1673682010-12-02 09:06:12 +00001629.. function:: makedirs(path, mode=0o777, exist_ok=False)
Georg Brandl116aa622007-08-15 14:28:22 +00001630
1631 .. index::
1632 single: directory; creating
1633 single: UNC paths; and os.makedirs()
1634
1635 Recursive directory creation function. Like :func:`mkdir`, but makes all
Terry Reedy5a22b652010-12-02 07:05:56 +00001636 intermediate-level directories needed to contain the leaf directory. If
Georg Brandlc1673682010-12-02 09:06:12 +00001637 the target directory with the same mode as specified already exists,
Terry Reedy5a22b652010-12-02 07:05:56 +00001638 raises an :exc:`OSError` exception if *exist_ok* is False, otherwise no
1639 exception is raised. If the directory cannot be created in other cases,
1640 raises an :exc:`OSError` exception. The default *mode* is ``0o777`` (octal).
Georg Brandlc1673682010-12-02 09:06:12 +00001641 On some systems, *mode* is ignored. Where it is used, the current umask
Terry Reedy5a22b652010-12-02 07:05:56 +00001642 value is first masked out.
Georg Brandl116aa622007-08-15 14:28:22 +00001643
1644 .. note::
1645
Georg Brandlc1673682010-12-02 09:06:12 +00001646 :func:`makedirs` will become confused if the path elements to create
1647 include :data:`pardir`.
Georg Brandl116aa622007-08-15 14:28:22 +00001648
Georg Brandl55ac8f02007-09-01 13:51:09 +00001649 This function handles UNC paths correctly.
Georg Brandl116aa622007-08-15 14:28:22 +00001650
Terry Reedy5a22b652010-12-02 07:05:56 +00001651 .. versionadded:: 3.2
1652 The *exist_ok* parameter.
1653
Georg Brandl116aa622007-08-15 14:28:22 +00001654
1655.. function:: pathconf(path, name)
1656
1657 Return system configuration information relevant to a named file. *name*
1658 specifies the configuration value to retrieve; it may be a string which is the
1659 name of a defined system value; these names are specified in a number of
1660 standards (POSIX.1, Unix 95, Unix 98, and others). Some platforms define
1661 additional names as well. The names known to the host operating system are
1662 given in the ``pathconf_names`` dictionary. For configuration variables not
1663 included in that mapping, passing an integer for *name* is also accepted.
Georg Brandl116aa622007-08-15 14:28:22 +00001664
1665 If *name* is a string and is not known, :exc:`ValueError` is raised. If a
1666 specific value for *name* is not supported by the host system, even if it is
1667 included in ``pathconf_names``, an :exc:`OSError` is raised with
1668 :const:`errno.EINVAL` for the error number.
1669
Benjamin Petersonf650e462010-05-06 23:03:05 +00001670 Availability: Unix.
1671
Georg Brandl116aa622007-08-15 14:28:22 +00001672
1673.. data:: pathconf_names
1674
1675 Dictionary mapping names accepted by :func:`pathconf` and :func:`fpathconf` to
1676 the integer values defined for those names by the host operating system. This
1677 can be used to determine the set of names known to the system. Availability:
Georg Brandlc575c902008-09-13 17:46:05 +00001678 Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00001679
1680
1681.. function:: readlink(path)
1682
1683 Return a string representing the path to which the symbolic link points. The
1684 result may be either an absolute or relative pathname; if it is relative, it may
1685 be converted to an absolute pathname using ``os.path.join(os.path.dirname(path),
1686 result)``.
1687
Georg Brandl76e55382008-10-08 16:34:57 +00001688 If the *path* is a string object, the result will also be a string object,
1689 and the call may raise an UnicodeDecodeError. If the *path* is a bytes
1690 object, the result will be a bytes object.
Georg Brandl116aa622007-08-15 14:28:22 +00001691
Brian Curtinc7395692010-07-09 15:15:09 +00001692 Availability: Unix, Windows
1693
Georg Brandlb3823372010-07-10 08:58:37 +00001694 .. versionchanged:: 3.2
1695 Added support for Windows 6.0 (Vista) symbolic links.
Georg Brandl116aa622007-08-15 14:28:22 +00001696
1697
1698.. function:: remove(path)
1699
Georg Brandla6053b42009-09-01 08:11:14 +00001700 Remove (delete) the file *path*. If *path* is a directory, :exc:`OSError` is
1701 raised; see :func:`rmdir` below to remove a directory. This is identical to
1702 the :func:`unlink` function documented below. On Windows, attempting to
1703 remove a file that is in use causes an exception to be raised; on Unix, the
1704 directory entry is removed but the storage allocated to the file is not made
Benjamin Petersonf650e462010-05-06 23:03:05 +00001705 available until the original file is no longer in use.
1706
1707 Availability: Unix, Windows.
Georg Brandl116aa622007-08-15 14:28:22 +00001708
1709
1710.. function:: removedirs(path)
1711
1712 .. index:: single: directory; deleting
1713
Christian Heimesfaf2f632008-01-06 16:59:19 +00001714 Remove directories recursively. Works like :func:`rmdir` except that, if the
Georg Brandl116aa622007-08-15 14:28:22 +00001715 leaf directory is successfully removed, :func:`removedirs` tries to
1716 successively remove every parent directory mentioned in *path* until an error
1717 is raised (which is ignored, because it generally means that a parent directory
1718 is not empty). For example, ``os.removedirs('foo/bar/baz')`` will first remove
1719 the directory ``'foo/bar/baz'``, and then remove ``'foo/bar'`` and ``'foo'`` if
1720 they are empty. Raises :exc:`OSError` if the leaf directory could not be
1721 successfully removed.
1722
Georg Brandl116aa622007-08-15 14:28:22 +00001723
1724.. function:: rename(src, dst)
1725
1726 Rename the file or directory *src* to *dst*. If *dst* is a directory,
1727 :exc:`OSError` will be raised. On Unix, if *dst* exists and is a file, it will
Christian Heimesfaf2f632008-01-06 16:59:19 +00001728 be replaced silently if the user has permission. The operation may fail on some
Georg Brandl116aa622007-08-15 14:28:22 +00001729 Unix flavors if *src* and *dst* are on different filesystems. If successful,
1730 the renaming will be an atomic operation (this is a POSIX requirement). On
1731 Windows, if *dst* already exists, :exc:`OSError` will be raised even if it is a
1732 file; there may be no way to implement an atomic rename when *dst* names an
Benjamin Petersonf650e462010-05-06 23:03:05 +00001733 existing file.
1734
1735 Availability: Unix, Windows.
Georg Brandl116aa622007-08-15 14:28:22 +00001736
1737
1738.. function:: renames(old, new)
1739
1740 Recursive directory or file renaming function. Works like :func:`rename`, except
1741 creation of any intermediate directories needed to make the new pathname good is
1742 attempted first. After the rename, directories corresponding to rightmost path
1743 segments of the old name will be pruned away using :func:`removedirs`.
1744
Georg Brandl116aa622007-08-15 14:28:22 +00001745 .. note::
1746
1747 This function can fail with the new directory structure made if you lack
1748 permissions needed to remove the leaf directory or file.
1749
1750
1751.. function:: rmdir(path)
1752
Georg Brandla6053b42009-09-01 08:11:14 +00001753 Remove (delete) the directory *path*. Only works when the directory is
1754 empty, otherwise, :exc:`OSError` is raised. In order to remove whole
Benjamin Petersonf650e462010-05-06 23:03:05 +00001755 directory trees, :func:`shutil.rmtree` can be used.
1756
1757 Availability: Unix, Windows.
Georg Brandl116aa622007-08-15 14:28:22 +00001758
1759
1760.. function:: stat(path)
1761
R. David Murray7b1aae92011-01-24 19:34:58 +00001762 Perform the equivalent of a :c:func:`stat` system call on the given path.
1763 (This function follows symlinks; to stat a symlink use :func:`lstat`.)
Georg Brandl116aa622007-08-15 14:28:22 +00001764
R. David Murray7b1aae92011-01-24 19:34:58 +00001765 The return value is an object whose attributes correspond to the members
1766 of the :c:type:`stat` structure, namely:
1767
1768 * :attr:`st_mode` - protection bits,
1769 * :attr:`st_ino` - inode number,
1770 * :attr:`st_dev` - device,
1771 * :attr:`st_nlink` - number of hard links,
1772 * :attr:`st_uid` - user id of owner,
1773 * :attr:`st_gid` - group id of owner,
1774 * :attr:`st_size` - size of file, in bytes,
1775 * :attr:`st_atime` - time of most recent access,
1776 * :attr:`st_mtime` - time of most recent content modification,
1777 * :attr:`st_ctime` - platform dependent; time of most recent metadata change on
1778 Unix, or the time of creation on Windows)
Georg Brandl116aa622007-08-15 14:28:22 +00001779
1780 On some Unix systems (such as Linux), the following attributes may also be
R. David Murray7b1aae92011-01-24 19:34:58 +00001781 available:
1782
1783 * :attr:`st_blocks` - number of blocks allocated for file
1784 * :attr:`st_blksize` - filesystem blocksize
1785 * :attr:`st_rdev` - type of device if an inode device
1786 * :attr:`st_flags` - user defined flags for file
Georg Brandl116aa622007-08-15 14:28:22 +00001787
1788 On other Unix systems (such as FreeBSD), the following attributes may be
R. David Murray7b1aae92011-01-24 19:34:58 +00001789 available (but may be only filled out if root tries to use them):
1790
1791 * :attr:`st_gen` - file generation number
1792 * :attr:`st_birthtime` - time of file creation
Georg Brandl116aa622007-08-15 14:28:22 +00001793
1794 On Mac OS systems, the following attributes may also be available:
Georg Brandl116aa622007-08-15 14:28:22 +00001795
R. David Murray7b1aae92011-01-24 19:34:58 +00001796 * :attr:`st_rsize`
1797 * :attr:`st_creator`
1798 * :attr:`st_type`
Georg Brandl116aa622007-08-15 14:28:22 +00001799
1800 .. note::
1801
1802 The exact meaning and resolution of the :attr:`st_atime`, :attr:`st_mtime`, and
1803 :attr:`st_ctime` members depends on the operating system and the file system.
1804 For example, on Windows systems using the FAT or FAT32 file systems,
1805 :attr:`st_mtime` has 2-second resolution, and :attr:`st_atime` has only 1-day
1806 resolution. See your operating system documentation for details.
1807
R. David Murray7b1aae92011-01-24 19:34:58 +00001808 For backward compatibility, the return value of :func:`~os.stat` is also accessible
1809 as a tuple of at least 10 integers giving the most important (and portable)
1810 members of the :c:type:`stat` structure, in the order :attr:`st_mode`,
1811 :attr:`st_ino`, :attr:`st_dev`, :attr:`st_nlink`, :attr:`st_uid`,
1812 :attr:`st_gid`, :attr:`st_size`, :attr:`st_atime`, :attr:`st_mtime`,
1813 :attr:`st_ctime`. More items may be added at the end by some implementations.
1814
1815 .. index:: module: stat
1816
1817 The standard module :mod:`stat` defines functions and constants that are useful
1818 for extracting information from a :c:type:`stat` structure. (On Windows, some
1819 items are filled with dummy values.)
1820
1821 Example::
1822
1823 >>> import os
1824 >>> statinfo = os.stat('somefile.txt')
1825 >>> statinfo
Raymond Hettinger8f0ae9a2011-02-18 00:53:55 +00001826 posix.stat_result(st_mode=33188, st_ino=7876932, st_dev=234881026,
1827 st_nlink=1, st_uid=501, st_gid=501, st_size=264, st_atime=1297230295,
1828 st_mtime=1297230027, st_ctime=1297230027)
R. David Murray7b1aae92011-01-24 19:34:58 +00001829 >>> statinfo.st_size
Raymond Hettinger8f0ae9a2011-02-18 00:53:55 +00001830 264
R. David Murray7b1aae92011-01-24 19:34:58 +00001831
Georg Brandlc575c902008-09-13 17:46:05 +00001832 Availability: Unix, Windows.
Georg Brandl116aa622007-08-15 14:28:22 +00001833
Georg Brandl116aa622007-08-15 14:28:22 +00001834
1835.. function:: stat_float_times([newvalue])
1836
1837 Determine whether :class:`stat_result` represents time stamps as float objects.
R. David Murray7b1aae92011-01-24 19:34:58 +00001838 If *newvalue* is ``True``, future calls to :func:`~os.stat` return floats, if it is
Georg Brandl116aa622007-08-15 14:28:22 +00001839 ``False``, future calls return ints. If *newvalue* is omitted, return the
1840 current setting.
1841
1842 For compatibility with older Python versions, accessing :class:`stat_result` as
1843 a tuple always returns integers.
1844
Georg Brandl55ac8f02007-09-01 13:51:09 +00001845 Python now returns float values by default. Applications which do not work
1846 correctly with floating point time stamps can use this function to restore the
1847 old behaviour.
Georg Brandl116aa622007-08-15 14:28:22 +00001848
1849 The resolution of the timestamps (that is the smallest possible fraction)
1850 depends on the system. Some systems only support second resolution; on these
1851 systems, the fraction will always be zero.
1852
1853 It is recommended that this setting is only changed at program startup time in
1854 the *__main__* module; libraries should never change this setting. If an
1855 application uses a library that works incorrectly if floating point time stamps
1856 are processed, this application should turn the feature off until the library
1857 has been corrected.
1858
1859
1860.. function:: statvfs(path)
1861
Georg Brandl60203b42010-10-06 10:11:56 +00001862 Perform a :c:func:`statvfs` system call on the given path. The return value is
Georg Brandl116aa622007-08-15 14:28:22 +00001863 an object whose attributes describe the filesystem on the given path, and
Georg Brandl60203b42010-10-06 10:11:56 +00001864 correspond to the members of the :c:type:`statvfs` structure, namely:
Georg Brandl116aa622007-08-15 14:28:22 +00001865 :attr:`f_bsize`, :attr:`f_frsize`, :attr:`f_blocks`, :attr:`f_bfree`,
1866 :attr:`f_bavail`, :attr:`f_files`, :attr:`f_ffree`, :attr:`f_favail`,
Benjamin Petersonf650e462010-05-06 23:03:05 +00001867 :attr:`f_flag`, :attr:`f_namemax`.
1868
Andrew M. Kuchling4ea04a32010-08-18 22:30:34 +00001869 Two module-level constants are defined for the :attr:`f_flag` attribute's
1870 bit-flags: if :const:`ST_RDONLY` is set, the filesystem is mounted
1871 read-only, and if :const:`ST_NOSUID` is set, the semantics of
1872 setuid/setgid bits are disabled or not supported.
1873
1874 .. versionchanged:: 3.2
1875 The :const:`ST_RDONLY` and :const:`ST_NOSUID` constants were added.
1876
Benjamin Petersonf650e462010-05-06 23:03:05 +00001877 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00001878
Georg Brandl116aa622007-08-15 14:28:22 +00001879
Benjamin Peterson5879d412009-03-30 14:51:56 +00001880.. function:: symlink(source, link_name)
Georg Brandl64a41ed2010-10-06 08:52:48 +00001881 symlink(source, link_name, target_is_directory=False)
Georg Brandl116aa622007-08-15 14:28:22 +00001882
Brian Curtinc7395692010-07-09 15:15:09 +00001883 Create a symbolic link pointing to *source* named *link_name*.
1884
Georg Brandl64a41ed2010-10-06 08:52:48 +00001885 On Windows, symlink version takes an additional optional parameter,
1886 *target_is_directory*, which defaults to ``False``.
Benjamin Petersonf650e462010-05-06 23:03:05 +00001887
Georg Brandl64a41ed2010-10-06 08:52:48 +00001888 On Windows, a symlink represents a file or a directory, and does not morph to
1889 the target dynamically. For this reason, when creating a symlink on Windows,
1890 if the target is not already present, the symlink will default to being a
1891 file symlink. If *target_is_directory* is set to ``True``, the symlink will
1892 be created as a directory symlink. This parameter is ignored if the target
1893 exists (and the symlink is created with the same type as the target).
Brian Curtind40e6f72010-07-08 21:39:08 +00001894
Georg Brandl64a41ed2010-10-06 08:52:48 +00001895 Symbolic link support was introduced in Windows 6.0 (Vista). :func:`symlink`
1896 will raise a :exc:`NotImplementedError` on Windows versions earlier than 6.0.
Brian Curtin52173d42010-12-02 18:29:18 +00001897
1898 .. note::
1899
Brian Curtin96245592010-12-28 17:08:22 +00001900 The *SeCreateSymbolicLinkPrivilege* is required in order to successfully
1901 create symlinks. This privilege is not typically granted to regular
1902 users but is available to accounts which can escalate privileges to the
1903 administrator level. Either obtaining the privilege or running your
1904 application as an administrator are ways to successfully create symlinks.
1905
1906
1907 :exc:`OSError` is raised when the function is called by an unprivileged
1908 user.
Brian Curtind40e6f72010-07-08 21:39:08 +00001909
Georg Brandl64a41ed2010-10-06 08:52:48 +00001910 Availability: Unix, Windows.
Brian Curtinc7395692010-07-09 15:15:09 +00001911
Georg Brandlb3823372010-07-10 08:58:37 +00001912 .. versionchanged:: 3.2
1913 Added support for Windows 6.0 (Vista) symbolic links.
Georg Brandl116aa622007-08-15 14:28:22 +00001914
1915
Ross Lagerwall7807c352011-03-17 20:20:30 +02001916.. function:: sync()
1917
1918 Force write of everything to disk.
1919
1920 Availability: Unix.
1921
1922 .. versionadded:: 3.3
1923
1924
1925.. function:: truncate(path, length)
1926
1927 Truncate the file corresponding to *path*, so that it is at most
1928 *length* bytes in size.
1929
1930 Availability: Unix.
1931
1932 .. versionadded:: 3.3
1933
1934
Georg Brandl116aa622007-08-15 14:28:22 +00001935.. function:: unlink(path)
1936
Georg Brandla6053b42009-09-01 08:11:14 +00001937 Remove (delete) the file *path*. This is the same function as
1938 :func:`remove`; the :func:`unlink` name is its traditional Unix
Benjamin Petersonf650e462010-05-06 23:03:05 +00001939 name.
1940
1941 Availability: Unix, Windows.
Georg Brandl116aa622007-08-15 14:28:22 +00001942
1943
1944.. function:: utime(path, times)
1945
Benjamin Peterson4cd6a952008-08-17 20:23:46 +00001946 Set the access and modified times of the file specified by *path*. If *times*
1947 is ``None``, then the file's access and modified times are set to the current
1948 time. (The effect is similar to running the Unix program :program:`touch` on
1949 the path.) Otherwise, *times* must be a 2-tuple of numbers, of the form
1950 ``(atime, mtime)`` which is used to set the access and modified times,
1951 respectively. Whether a directory can be given for *path* depends on whether
1952 the operating system implements directories as files (for example, Windows
1953 does not). Note that the exact times you set here may not be returned by a
R. David Murray7b1aae92011-01-24 19:34:58 +00001954 subsequent :func:`~os.stat` call, depending on the resolution with which your
1955 operating system records access and modification times; see :func:`~os.stat`.
Georg Brandl116aa622007-08-15 14:28:22 +00001956
Georg Brandlc575c902008-09-13 17:46:05 +00001957 Availability: Unix, Windows.
Georg Brandl116aa622007-08-15 14:28:22 +00001958
1959
Georg Brandl18244152009-09-02 20:34:52 +00001960.. function:: walk(top, topdown=True, onerror=None, followlinks=False)
Georg Brandl116aa622007-08-15 14:28:22 +00001961
1962 .. index::
1963 single: directory; walking
1964 single: directory; traversal
1965
Christian Heimesfaf2f632008-01-06 16:59:19 +00001966 Generate the file names in a directory tree by walking the tree
1967 either top-down or bottom-up. For each directory in the tree rooted at directory
Georg Brandl116aa622007-08-15 14:28:22 +00001968 *top* (including *top* itself), it yields a 3-tuple ``(dirpath, dirnames,
1969 filenames)``.
1970
1971 *dirpath* is a string, the path to the directory. *dirnames* is a list of the
1972 names of the subdirectories in *dirpath* (excluding ``'.'`` and ``'..'``).
1973 *filenames* is a list of the names of the non-directory files in *dirpath*.
1974 Note that the names in the lists contain no path components. To get a full path
1975 (which begins with *top*) to a file or directory in *dirpath*, do
1976 ``os.path.join(dirpath, name)``.
1977
Christian Heimesfaf2f632008-01-06 16:59:19 +00001978 If optional argument *topdown* is ``True`` or not specified, the triple for a
Georg Brandl116aa622007-08-15 14:28:22 +00001979 directory is generated before the triples for any of its subdirectories
Christian Heimesfaf2f632008-01-06 16:59:19 +00001980 (directories are generated top-down). If *topdown* is ``False``, the triple for a
Georg Brandl116aa622007-08-15 14:28:22 +00001981 directory is generated after the triples for all of its subdirectories
Christian Heimesfaf2f632008-01-06 16:59:19 +00001982 (directories are generated bottom-up).
Georg Brandl116aa622007-08-15 14:28:22 +00001983
Christian Heimesfaf2f632008-01-06 16:59:19 +00001984 When *topdown* is ``True``, the caller can modify the *dirnames* list in-place
Georg Brandl116aa622007-08-15 14:28:22 +00001985 (perhaps using :keyword:`del` or slice assignment), and :func:`walk` will only
1986 recurse into the subdirectories whose names remain in *dirnames*; this can be
1987 used to prune the search, impose a specific order of visiting, or even to inform
1988 :func:`walk` about directories the caller creates or renames before it resumes
Christian Heimesfaf2f632008-01-06 16:59:19 +00001989 :func:`walk` again. Modifying *dirnames* when *topdown* is ``False`` is
Georg Brandl116aa622007-08-15 14:28:22 +00001990 ineffective, because in bottom-up mode the directories in *dirnames* are
1991 generated before *dirpath* itself is generated.
1992
Christian Heimesfaf2f632008-01-06 16:59:19 +00001993 By default errors from the :func:`listdir` call are ignored. If optional
Georg Brandl116aa622007-08-15 14:28:22 +00001994 argument *onerror* is specified, it should be a function; it will be called with
1995 one argument, an :exc:`OSError` instance. It can report the error to continue
1996 with the walk, or raise the exception to abort the walk. Note that the filename
1997 is available as the ``filename`` attribute of the exception object.
1998
1999 By default, :func:`walk` will not walk down into symbolic links that resolve to
Christian Heimesfaf2f632008-01-06 16:59:19 +00002000 directories. Set *followlinks* to ``True`` to visit directories pointed to by
Georg Brandl116aa622007-08-15 14:28:22 +00002001 symlinks, on systems that support them.
2002
Georg Brandl116aa622007-08-15 14:28:22 +00002003 .. note::
2004
Christian Heimesfaf2f632008-01-06 16:59:19 +00002005 Be aware that setting *followlinks* to ``True`` can lead to infinite recursion if a
Georg Brandl116aa622007-08-15 14:28:22 +00002006 link points to a parent directory of itself. :func:`walk` does not keep track of
2007 the directories it visited already.
2008
2009 .. note::
2010
2011 If you pass a relative pathname, don't change the current working directory
2012 between resumptions of :func:`walk`. :func:`walk` never changes the current
2013 directory, and assumes that its caller doesn't either.
2014
2015 This example displays the number of bytes taken by non-directory files in each
2016 directory under the starting directory, except that it doesn't look under any
2017 CVS subdirectory::
2018
2019 import os
2020 from os.path import join, getsize
2021 for root, dirs, files in os.walk('python/Lib/email'):
Georg Brandl6911e3c2007-09-04 07:15:32 +00002022 print(root, "consumes", end=" ")
2023 print(sum(getsize(join(root, name)) for name in files), end=" ")
2024 print("bytes in", len(files), "non-directory files")
Georg Brandl116aa622007-08-15 14:28:22 +00002025 if 'CVS' in dirs:
2026 dirs.remove('CVS') # don't visit CVS directories
2027
Christian Heimesfaf2f632008-01-06 16:59:19 +00002028 In the next example, walking the tree bottom-up is essential: :func:`rmdir`
Georg Brandl116aa622007-08-15 14:28:22 +00002029 doesn't allow deleting a directory before the directory is empty::
2030
Christian Heimesfaf2f632008-01-06 16:59:19 +00002031 # Delete everything reachable from the directory named in "top",
Georg Brandl116aa622007-08-15 14:28:22 +00002032 # assuming there are no symbolic links.
2033 # CAUTION: This is dangerous! For example, if top == '/', it
2034 # could delete all your disk files.
2035 import os
2036 for root, dirs, files in os.walk(top, topdown=False):
2037 for name in files:
2038 os.remove(os.path.join(root, name))
2039 for name in dirs:
2040 os.rmdir(os.path.join(root, name))
2041
Georg Brandl116aa622007-08-15 14:28:22 +00002042
2043.. _os-process:
2044
2045Process Management
2046------------------
2047
2048These functions may be used to create and manage processes.
2049
2050The various :func:`exec\*` functions take a list of arguments for the new
2051program loaded into the process. In each case, the first of these arguments is
2052passed to the new program as its own name rather than as an argument a user may
2053have typed on a command line. For the C programmer, this is the ``argv[0]``
Georg Brandl60203b42010-10-06 10:11:56 +00002054passed to a program's :c:func:`main`. For example, ``os.execv('/bin/echo',
Georg Brandl116aa622007-08-15 14:28:22 +00002055['foo', 'bar'])`` will only print ``bar`` on standard output; ``foo`` will seem
2056to be ignored.
2057
2058
2059.. function:: abort()
2060
2061 Generate a :const:`SIGABRT` signal to the current process. On Unix, the default
2062 behavior is to produce a core dump; on Windows, the process immediately returns
2063 an exit code of ``3``. Be aware that programs which use :func:`signal.signal`
2064 to register a handler for :const:`SIGABRT` will behave differently.
Benjamin Petersonf650e462010-05-06 23:03:05 +00002065
Georg Brandlc575c902008-09-13 17:46:05 +00002066 Availability: Unix, Windows.
Georg Brandl116aa622007-08-15 14:28:22 +00002067
2068
2069.. function:: execl(path, arg0, arg1, ...)
2070 execle(path, arg0, arg1, ..., env)
2071 execlp(file, arg0, arg1, ...)
2072 execlpe(file, arg0, arg1, ..., env)
2073 execv(path, args)
2074 execve(path, args, env)
2075 execvp(file, args)
2076 execvpe(file, args, env)
2077
2078 These functions all execute a new program, replacing the current process; they
2079 do not return. On Unix, the new executable is loaded into the current process,
Christian Heimesfaf2f632008-01-06 16:59:19 +00002080 and will have the same process id as the caller. Errors will be reported as
Georg Brandl48310cd2009-01-03 21:18:54 +00002081 :exc:`OSError` exceptions.
Benjamin Petersone9bbc8b2008-09-28 02:06:32 +00002082
2083 The current process is replaced immediately. Open file objects and
2084 descriptors are not flushed, so if there may be data buffered
2085 on these open files, you should flush them using
2086 :func:`sys.stdout.flush` or :func:`os.fsync` before calling an
2087 :func:`exec\*` function.
Georg Brandl116aa622007-08-15 14:28:22 +00002088
Christian Heimesfaf2f632008-01-06 16:59:19 +00002089 The "l" and "v" variants of the :func:`exec\*` functions differ in how
2090 command-line arguments are passed. The "l" variants are perhaps the easiest
Georg Brandl116aa622007-08-15 14:28:22 +00002091 to work with if the number of parameters is fixed when the code is written; the
2092 individual parameters simply become additional parameters to the :func:`execl\*`
Christian Heimesfaf2f632008-01-06 16:59:19 +00002093 functions. The "v" variants are good when the number of parameters is
Georg Brandl116aa622007-08-15 14:28:22 +00002094 variable, with the arguments being passed in a list or tuple as the *args*
2095 parameter. In either case, the arguments to the child process should start with
2096 the name of the command being run, but this is not enforced.
2097
Christian Heimesfaf2f632008-01-06 16:59:19 +00002098 The variants which include a "p" near the end (:func:`execlp`,
Georg Brandl116aa622007-08-15 14:28:22 +00002099 :func:`execlpe`, :func:`execvp`, and :func:`execvpe`) will use the
2100 :envvar:`PATH` environment variable to locate the program *file*. When the
2101 environment is being replaced (using one of the :func:`exec\*e` variants,
2102 discussed in the next paragraph), the new environment is used as the source of
2103 the :envvar:`PATH` variable. The other variants, :func:`execl`, :func:`execle`,
2104 :func:`execv`, and :func:`execve`, will not use the :envvar:`PATH` variable to
2105 locate the executable; *path* must contain an appropriate absolute or relative
2106 path.
2107
2108 For :func:`execle`, :func:`execlpe`, :func:`execve`, and :func:`execvpe` (note
Christian Heimesfaf2f632008-01-06 16:59:19 +00002109 that these all end in "e"), the *env* parameter must be a mapping which is
Christian Heimesa342c012008-04-20 21:01:16 +00002110 used to define the environment variables for the new process (these are used
2111 instead of the current process' environment); the functions :func:`execl`,
Georg Brandl116aa622007-08-15 14:28:22 +00002112 :func:`execlp`, :func:`execv`, and :func:`execvp` all cause the new process to
Georg Brandl48310cd2009-01-03 21:18:54 +00002113 inherit the environment of the current process.
Benjamin Petersone9bbc8b2008-09-28 02:06:32 +00002114
2115 Availability: Unix, Windows.
Georg Brandl116aa622007-08-15 14:28:22 +00002116
2117
2118.. function:: _exit(n)
2119
Georg Brandl6f4e68d2010-10-17 10:51:45 +00002120 Exit the process with status *n*, without calling cleanup handlers, flushing
Benjamin Petersonf650e462010-05-06 23:03:05 +00002121 stdio buffers, etc.
2122
2123 Availability: Unix, Windows.
Georg Brandl116aa622007-08-15 14:28:22 +00002124
2125 .. note::
2126
Georg Brandl6f4e68d2010-10-17 10:51:45 +00002127 The standard way to exit is ``sys.exit(n)``. :func:`_exit` should
2128 normally only be used in the child process after a :func:`fork`.
Georg Brandl116aa622007-08-15 14:28:22 +00002129
Christian Heimesfaf2f632008-01-06 16:59:19 +00002130The following exit codes are defined and can be used with :func:`_exit`,
Georg Brandl116aa622007-08-15 14:28:22 +00002131although they are not required. These are typically used for system programs
2132written in Python, such as a mail server's external command delivery program.
2133
2134.. note::
2135
2136 Some of these may not be available on all Unix platforms, since there is some
2137 variation. These constants are defined where they are defined by the underlying
2138 platform.
2139
2140
2141.. data:: EX_OK
2142
Benjamin Petersonf650e462010-05-06 23:03:05 +00002143 Exit code that means no error occurred.
2144
2145 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002146
Georg Brandl116aa622007-08-15 14:28:22 +00002147
2148.. data:: EX_USAGE
2149
2150 Exit code that means the command was used incorrectly, such as when the wrong
Benjamin Petersonf650e462010-05-06 23:03:05 +00002151 number of arguments are given.
2152
2153 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002154
Georg Brandl116aa622007-08-15 14:28:22 +00002155
2156.. data:: EX_DATAERR
2157
Benjamin Petersonf650e462010-05-06 23:03:05 +00002158 Exit code that means the input data was incorrect.
2159
2160 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002161
Georg Brandl116aa622007-08-15 14:28:22 +00002162
2163.. data:: EX_NOINPUT
2164
2165 Exit code that means an input file did not exist or was not readable.
Benjamin Petersonf650e462010-05-06 23:03:05 +00002166
Georg Brandlc575c902008-09-13 17:46:05 +00002167 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002168
Georg Brandl116aa622007-08-15 14:28:22 +00002169
2170.. data:: EX_NOUSER
2171
Benjamin Petersonf650e462010-05-06 23:03:05 +00002172 Exit code that means a specified user did not exist.
2173
2174 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002175
Georg Brandl116aa622007-08-15 14:28:22 +00002176
2177.. data:: EX_NOHOST
2178
Benjamin Petersonf650e462010-05-06 23:03:05 +00002179 Exit code that means a specified host did not exist.
2180
2181 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002182
Georg Brandl116aa622007-08-15 14:28:22 +00002183
2184.. data:: EX_UNAVAILABLE
2185
Benjamin Petersonf650e462010-05-06 23:03:05 +00002186 Exit code that means that a required service is unavailable.
2187
2188 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002189
Georg Brandl116aa622007-08-15 14:28:22 +00002190
2191.. data:: EX_SOFTWARE
2192
Benjamin Petersonf650e462010-05-06 23:03:05 +00002193 Exit code that means an internal software error was detected.
2194
2195 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002196
Georg Brandl116aa622007-08-15 14:28:22 +00002197
2198.. data:: EX_OSERR
2199
2200 Exit code that means an operating system error was detected, such as the
Benjamin Petersonf650e462010-05-06 23:03:05 +00002201 inability to fork or create a pipe.
2202
2203 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002204
Georg Brandl116aa622007-08-15 14:28:22 +00002205
2206.. data:: EX_OSFILE
2207
2208 Exit code that means some system file did not exist, could not be opened, or had
Benjamin Petersonf650e462010-05-06 23:03:05 +00002209 some other kind of error.
2210
2211 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002212
Georg Brandl116aa622007-08-15 14:28:22 +00002213
2214.. data:: EX_CANTCREAT
2215
2216 Exit code that means a user specified output file could not be created.
Benjamin Petersonf650e462010-05-06 23:03:05 +00002217
Georg Brandlc575c902008-09-13 17:46:05 +00002218 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002219
Georg Brandl116aa622007-08-15 14:28:22 +00002220
2221.. data:: EX_IOERR
2222
2223 Exit code that means that an error occurred while doing I/O on some file.
Benjamin Petersonf650e462010-05-06 23:03:05 +00002224
Georg Brandlc575c902008-09-13 17:46:05 +00002225 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002226
Georg Brandl116aa622007-08-15 14:28:22 +00002227
2228.. data:: EX_TEMPFAIL
2229
2230 Exit code that means a temporary failure occurred. This indicates something
2231 that may not really be an error, such as a network connection that couldn't be
Benjamin Petersonf650e462010-05-06 23:03:05 +00002232 made during a retryable operation.
2233
2234 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002235
Georg Brandl116aa622007-08-15 14:28:22 +00002236
2237.. data:: EX_PROTOCOL
2238
2239 Exit code that means that a protocol exchange was illegal, invalid, or not
Benjamin Petersonf650e462010-05-06 23:03:05 +00002240 understood.
2241
2242 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002243
Georg Brandl116aa622007-08-15 14:28:22 +00002244
2245.. data:: EX_NOPERM
2246
2247 Exit code that means that there were insufficient permissions to perform the
Benjamin Petersonf650e462010-05-06 23:03:05 +00002248 operation (but not intended for file system problems).
2249
2250 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002251
Georg Brandl116aa622007-08-15 14:28:22 +00002252
2253.. data:: EX_CONFIG
2254
2255 Exit code that means that some kind of configuration error occurred.
Benjamin Petersonf650e462010-05-06 23:03:05 +00002256
Georg Brandlc575c902008-09-13 17:46:05 +00002257 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002258
Georg Brandl116aa622007-08-15 14:28:22 +00002259
2260.. data:: EX_NOTFOUND
2261
Benjamin Petersonf650e462010-05-06 23:03:05 +00002262 Exit code that means something like "an entry was not found".
2263
2264 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002265
Georg Brandl116aa622007-08-15 14:28:22 +00002266
2267.. function:: fork()
2268
Christian Heimesfaf2f632008-01-06 16:59:19 +00002269 Fork a child process. Return ``0`` in the child and the child's process id in the
Christian Heimesdd15f6c2008-03-16 00:07:10 +00002270 parent. If an error occurs :exc:`OSError` is raised.
Benjamin Petersonbcd8ac32008-10-10 22:20:52 +00002271
2272 Note that some platforms including FreeBSD <= 6.3, Cygwin and OS/2 EMX have
2273 known issues when using fork() from a thread.
2274
Georg Brandlc575c902008-09-13 17:46:05 +00002275 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002276
2277
2278.. function:: forkpty()
2279
2280 Fork a child process, using a new pseudo-terminal as the child's controlling
2281 terminal. Return a pair of ``(pid, fd)``, where *pid* is ``0`` in the child, the
2282 new child's process id in the parent, and *fd* is the file descriptor of the
2283 master end of the pseudo-terminal. For a more portable approach, use the
Christian Heimesdd15f6c2008-03-16 00:07:10 +00002284 :mod:`pty` module. If an error occurs :exc:`OSError` is raised.
Benjamin Petersonf650e462010-05-06 23:03:05 +00002285
Georg Brandlc575c902008-09-13 17:46:05 +00002286 Availability: some flavors of Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002287
2288
2289.. function:: kill(pid, sig)
2290
2291 .. index::
2292 single: process; killing
2293 single: process; signalling
2294
2295 Send signal *sig* to the process *pid*. Constants for the specific signals
2296 available on the host platform are defined in the :mod:`signal` module.
Brian Curtineb24d742010-04-12 17:16:38 +00002297
2298 Windows: The :data:`signal.CTRL_C_EVENT` and
2299 :data:`signal.CTRL_BREAK_EVENT` signals are special signals which can
2300 only be sent to console processes which share a common console window,
2301 e.g., some subprocesses. Any other value for *sig* will cause the process
2302 to be unconditionally killed by the TerminateProcess API, and the exit code
2303 will be set to *sig*. The Windows version of :func:`kill` additionally takes
2304 process handles to be killed.
Georg Brandl116aa622007-08-15 14:28:22 +00002305
Victor Stinnerb3e72192011-05-08 01:46:11 +02002306 See also :func:`signal.pthread_kill`.
2307
Georg Brandl67b21b72010-08-17 15:07:14 +00002308 .. versionadded:: 3.2
2309 Windows support.
Brian Curtin904bd392010-04-20 15:28:06 +00002310
Georg Brandl116aa622007-08-15 14:28:22 +00002311
2312.. function:: killpg(pgid, sig)
2313
2314 .. index::
2315 single: process; killing
2316 single: process; signalling
2317
Benjamin Petersonf650e462010-05-06 23:03:05 +00002318 Send the signal *sig* to the process group *pgid*.
2319
2320 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002321
Georg Brandl116aa622007-08-15 14:28:22 +00002322
2323.. function:: nice(increment)
2324
2325 Add *increment* to the process's "niceness". Return the new niceness.
Benjamin Petersonf650e462010-05-06 23:03:05 +00002326
Georg Brandlc575c902008-09-13 17:46:05 +00002327 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002328
2329
2330.. function:: plock(op)
2331
2332 Lock program segments into memory. The value of *op* (defined in
Benjamin Petersonf650e462010-05-06 23:03:05 +00002333 ``<sys/lock.h>``) determines which segments are locked.
2334
2335 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002336
2337
2338.. function:: popen(...)
2339 :noindex:
2340
2341 Run child processes, returning opened pipes for communications. These functions
2342 are described in section :ref:`os-newstreams`.
2343
2344
2345.. function:: spawnl(mode, path, ...)
2346 spawnle(mode, path, ..., env)
2347 spawnlp(mode, file, ...)
2348 spawnlpe(mode, file, ..., env)
2349 spawnv(mode, path, args)
2350 spawnve(mode, path, args, env)
2351 spawnvp(mode, file, args)
2352 spawnvpe(mode, file, args, env)
2353
2354 Execute the program *path* in a new process.
2355
2356 (Note that the :mod:`subprocess` module provides more powerful facilities for
2357 spawning new processes and retrieving their results; using that module is
Benjamin Peterson87c8d872009-06-11 22:54:11 +00002358 preferable to using these functions. Check especially the
2359 :ref:`subprocess-replacements` section.)
Georg Brandl116aa622007-08-15 14:28:22 +00002360
Christian Heimesfaf2f632008-01-06 16:59:19 +00002361 If *mode* is :const:`P_NOWAIT`, this function returns the process id of the new
Georg Brandl116aa622007-08-15 14:28:22 +00002362 process; if *mode* is :const:`P_WAIT`, returns the process's exit code if it
2363 exits normally, or ``-signal``, where *signal* is the signal that killed the
Christian Heimesfaf2f632008-01-06 16:59:19 +00002364 process. On Windows, the process id will actually be the process handle, so can
Georg Brandl116aa622007-08-15 14:28:22 +00002365 be used with the :func:`waitpid` function.
2366
Christian Heimesfaf2f632008-01-06 16:59:19 +00002367 The "l" and "v" variants of the :func:`spawn\*` functions differ in how
2368 command-line arguments are passed. The "l" variants are perhaps the easiest
Georg Brandl116aa622007-08-15 14:28:22 +00002369 to work with if the number of parameters is fixed when the code is written; the
2370 individual parameters simply become additional parameters to the
Christian Heimesfaf2f632008-01-06 16:59:19 +00002371 :func:`spawnl\*` functions. The "v" variants are good when the number of
Georg Brandl116aa622007-08-15 14:28:22 +00002372 parameters is variable, with the arguments being passed in a list or tuple as
2373 the *args* parameter. In either case, the arguments to the child process must
2374 start with the name of the command being run.
2375
Christian Heimesfaf2f632008-01-06 16:59:19 +00002376 The variants which include a second "p" near the end (:func:`spawnlp`,
Georg Brandl116aa622007-08-15 14:28:22 +00002377 :func:`spawnlpe`, :func:`spawnvp`, and :func:`spawnvpe`) will use the
2378 :envvar:`PATH` environment variable to locate the program *file*. When the
2379 environment is being replaced (using one of the :func:`spawn\*e` variants,
2380 discussed in the next paragraph), the new environment is used as the source of
2381 the :envvar:`PATH` variable. The other variants, :func:`spawnl`,
2382 :func:`spawnle`, :func:`spawnv`, and :func:`spawnve`, will not use the
2383 :envvar:`PATH` variable to locate the executable; *path* must contain an
2384 appropriate absolute or relative path.
2385
2386 For :func:`spawnle`, :func:`spawnlpe`, :func:`spawnve`, and :func:`spawnvpe`
Christian Heimesfaf2f632008-01-06 16:59:19 +00002387 (note that these all end in "e"), the *env* parameter must be a mapping
Christian Heimesa342c012008-04-20 21:01:16 +00002388 which is used to define the environment variables for the new process (they are
2389 used instead of the current process' environment); the functions
Georg Brandl116aa622007-08-15 14:28:22 +00002390 :func:`spawnl`, :func:`spawnlp`, :func:`spawnv`, and :func:`spawnvp` all cause
Benjamin Petersond23f8222009-04-05 19:13:16 +00002391 the new process to inherit the environment of the current process. Note that
2392 keys and values in the *env* dictionary must be strings; invalid keys or
2393 values will cause the function to fail, with a return value of ``127``.
Georg Brandl116aa622007-08-15 14:28:22 +00002394
2395 As an example, the following calls to :func:`spawnlp` and :func:`spawnvpe` are
2396 equivalent::
2397
2398 import os
2399 os.spawnlp(os.P_WAIT, 'cp', 'cp', 'index.html', '/dev/null')
2400
2401 L = ['cp', 'index.html', '/dev/null']
2402 os.spawnvpe(os.P_WAIT, 'cp', L, os.environ)
2403
2404 Availability: Unix, Windows. :func:`spawnlp`, :func:`spawnlpe`, :func:`spawnvp`
2405 and :func:`spawnvpe` are not available on Windows.
2406
Georg Brandl116aa622007-08-15 14:28:22 +00002407
2408.. data:: P_NOWAIT
2409 P_NOWAITO
2410
2411 Possible values for the *mode* parameter to the :func:`spawn\*` family of
2412 functions. If either of these values is given, the :func:`spawn\*` functions
Christian Heimesfaf2f632008-01-06 16:59:19 +00002413 will return as soon as the new process has been created, with the process id as
Benjamin Petersonf650e462010-05-06 23:03:05 +00002414 the return value.
2415
2416 Availability: Unix, Windows.
Georg Brandl116aa622007-08-15 14:28:22 +00002417
Georg Brandl116aa622007-08-15 14:28:22 +00002418
2419.. data:: P_WAIT
2420
2421 Possible value for the *mode* parameter to the :func:`spawn\*` family of
2422 functions. If this is given as *mode*, the :func:`spawn\*` functions will not
2423 return until the new process has run to completion and will return the exit code
2424 of the process the run is successful, or ``-signal`` if a signal kills the
Benjamin Petersonf650e462010-05-06 23:03:05 +00002425 process.
2426
2427 Availability: Unix, Windows.
Georg Brandl116aa622007-08-15 14:28:22 +00002428
Georg Brandl116aa622007-08-15 14:28:22 +00002429
2430.. data:: P_DETACH
2431 P_OVERLAY
2432
2433 Possible values for the *mode* parameter to the :func:`spawn\*` family of
2434 functions. These are less portable than those listed above. :const:`P_DETACH`
2435 is similar to :const:`P_NOWAIT`, but the new process is detached from the
2436 console of the calling process. If :const:`P_OVERLAY` is used, the current
2437 process will be replaced; the :func:`spawn\*` function will not return.
Benjamin Petersonf650e462010-05-06 23:03:05 +00002438
Georg Brandl116aa622007-08-15 14:28:22 +00002439 Availability: Windows.
2440
Georg Brandl116aa622007-08-15 14:28:22 +00002441
2442.. function:: startfile(path[, operation])
2443
2444 Start a file with its associated application.
2445
2446 When *operation* is not specified or ``'open'``, this acts like double-clicking
2447 the file in Windows Explorer, or giving the file name as an argument to the
2448 :program:`start` command from the interactive command shell: the file is opened
2449 with whatever application (if any) its extension is associated.
2450
2451 When another *operation* is given, it must be a "command verb" that specifies
2452 what should be done with the file. Common verbs documented by Microsoft are
2453 ``'print'`` and ``'edit'`` (to be used on files) as well as ``'explore'`` and
2454 ``'find'`` (to be used on directories).
2455
2456 :func:`startfile` returns as soon as the associated application is launched.
2457 There is no option to wait for the application to close, and no way to retrieve
2458 the application's exit status. The *path* parameter is relative to the current
2459 directory. If you want to use an absolute path, make sure the first character
Georg Brandl60203b42010-10-06 10:11:56 +00002460 is not a slash (``'/'``); the underlying Win32 :c:func:`ShellExecute` function
Georg Brandl116aa622007-08-15 14:28:22 +00002461 doesn't work if it is. Use the :func:`os.path.normpath` function to ensure that
Benjamin Petersonf650e462010-05-06 23:03:05 +00002462 the path is properly encoded for Win32.
2463
2464 Availability: Windows.
Georg Brandl116aa622007-08-15 14:28:22 +00002465
Georg Brandl116aa622007-08-15 14:28:22 +00002466
2467.. function:: system(command)
2468
2469 Execute the command (a string) in a subshell. This is implemented by calling
Georg Brandl60203b42010-10-06 10:11:56 +00002470 the Standard C function :c:func:`system`, and has the same limitations.
Georg Brandl8f7b4272010-10-14 06:35:53 +00002471 Changes to :data:`sys.stdin`, etc. are not reflected in the environment of
2472 the executed command. If *command* generates any output, it will be sent to
2473 the interpreter standard output stream.
Georg Brandl116aa622007-08-15 14:28:22 +00002474
2475 On Unix, the return value is the exit status of the process encoded in the
Georg Brandl8f7b4272010-10-14 06:35:53 +00002476 format specified for :func:`wait`. Note that POSIX does not specify the
2477 meaning of the return value of the C :c:func:`system` function, so the return
2478 value of the Python function is system-dependent.
Georg Brandl116aa622007-08-15 14:28:22 +00002479
Georg Brandl8f7b4272010-10-14 06:35:53 +00002480 On Windows, the return value is that returned by the system shell after
2481 running *command*. The shell is given by the Windows environment variable
2482 :envvar:`COMSPEC`: it is usually :program:`cmd.exe`, which returns the exit
2483 status of the command run; on systems using a non-native shell, consult your
2484 shell documentation.
Georg Brandl116aa622007-08-15 14:28:22 +00002485
Georg Brandl8f7b4272010-10-14 06:35:53 +00002486 The :mod:`subprocess` module provides more powerful facilities for spawning
2487 new processes and retrieving their results; using that module is preferable
2488 to using this function. See the :ref:`subprocess-replacements` section in
2489 the :mod:`subprocess` documentation for some helpful recipes.
Georg Brandl116aa622007-08-15 14:28:22 +00002490
Benjamin Petersonf650e462010-05-06 23:03:05 +00002491 Availability: Unix, Windows.
2492
Georg Brandl116aa622007-08-15 14:28:22 +00002493
2494.. function:: times()
2495
Benjamin Petersonf650e462010-05-06 23:03:05 +00002496 Return a 5-tuple of floating point numbers indicating accumulated (processor
2497 or other) times, in seconds. The items are: user time, system time,
2498 children's user time, children's system time, and elapsed real time since a
2499 fixed point in the past, in that order. See the Unix manual page
2500 :manpage:`times(2)` or the corresponding Windows Platform API documentation.
2501 On Windows, only the first two items are filled, the others are zero.
2502
2503 Availability: Unix, Windows
Georg Brandl116aa622007-08-15 14:28:22 +00002504
2505
2506.. function:: wait()
2507
2508 Wait for completion of a child process, and return a tuple containing its pid
2509 and exit status indication: a 16-bit number, whose low byte is the signal number
2510 that killed the process, and whose high byte is the exit status (if the signal
2511 number is zero); the high bit of the low byte is set if a core file was
Benjamin Petersonf650e462010-05-06 23:03:05 +00002512 produced.
2513
2514 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002515
Ross Lagerwall7807c352011-03-17 20:20:30 +02002516.. function:: waitid(idtype, id, options)
2517
2518 Wait for the completion of one or more child processes.
2519 *idtype* can be :data:`P_PID`, :data:`P_PGID` or :data:`P_ALL`.
2520 *id* specifies the pid to wait on.
2521 *options* is constructed from the ORing of one or more of :data:`WEXITED`,
2522 :data:`WSTOPPED` or :data:`WCONTINUED` and additionally may be ORed with
2523 :data:`WNOHANG` or :data:`WNOWAIT`. The return value is an object
2524 representing the data contained in the :c:type:`siginfo_t` structure, namely:
2525 :attr:`si_pid`, :attr:`si_uid`, :attr:`si_signo`, :attr:`si_status`,
2526 :attr:`si_code` or ``None`` if :data:`WNOHANG` is specified and there are no
2527 children in a waitable state.
2528
2529 Availability: Unix.
2530
2531 .. versionadded:: 3.3
2532
2533.. data:: P_PID
2534 P_PGID
2535 P_ALL
2536
2537 These are the possible values for *idtype* in :func:`waitid`. They affect
2538 how *id* is interpreted.
2539
2540 Availability: Unix.
2541
2542 .. versionadded:: 3.3
2543
2544.. data:: WEXITED
2545 WSTOPPED
2546 WNOWAIT
2547
2548 Flags that can be used in *options* in :func:`waitid` that specify what
2549 child signal to wait for.
2550
2551 Availability: Unix.
2552
2553 .. versionadded:: 3.3
2554
2555
2556.. data:: CLD_EXITED
2557 CLD_DUMPED
2558 CLD_TRAPPED
2559 CLD_CONTINUED
2560
2561 These are the possible values for :attr:`si_code` in the result returned by
2562 :func:`waitid`.
2563
2564 Availability: Unix.
2565
2566 .. versionadded:: 3.3
2567
Georg Brandl116aa622007-08-15 14:28:22 +00002568
2569.. function:: waitpid(pid, options)
2570
2571 The details of this function differ on Unix and Windows.
2572
2573 On Unix: Wait for completion of a child process given by process id *pid*, and
2574 return a tuple containing its process id and exit status indication (encoded as
2575 for :func:`wait`). The semantics of the call are affected by the value of the
2576 integer *options*, which should be ``0`` for normal operation.
2577
2578 If *pid* is greater than ``0``, :func:`waitpid` requests status information for
2579 that specific process. If *pid* is ``0``, the request is for the status of any
2580 child in the process group of the current process. If *pid* is ``-1``, the
2581 request pertains to any child of the current process. If *pid* is less than
2582 ``-1``, status is requested for any process in the process group ``-pid`` (the
2583 absolute value of *pid*).
2584
Benjamin Peterson4cd6a952008-08-17 20:23:46 +00002585 An :exc:`OSError` is raised with the value of errno when the syscall
2586 returns -1.
2587
Georg Brandl116aa622007-08-15 14:28:22 +00002588 On Windows: Wait for completion of a process given by process handle *pid*, and
2589 return a tuple containing *pid*, and its exit status shifted left by 8 bits
2590 (shifting makes cross-platform use of the function easier). A *pid* less than or
2591 equal to ``0`` has no special meaning on Windows, and raises an exception. The
2592 value of integer *options* has no effect. *pid* can refer to any process whose
2593 id is known, not necessarily a child process. The :func:`spawn` functions called
2594 with :const:`P_NOWAIT` return suitable process handles.
2595
2596
2597.. function:: wait3([options])
2598
2599 Similar to :func:`waitpid`, except no process id argument is given and a
2600 3-element tuple containing the child's process id, exit status indication, and
2601 resource usage information is returned. Refer to :mod:`resource`.\
2602 :func:`getrusage` for details on resource usage information. The option
2603 argument is the same as that provided to :func:`waitpid` and :func:`wait4`.
Benjamin Petersonf650e462010-05-06 23:03:05 +00002604
Georg Brandl116aa622007-08-15 14:28:22 +00002605 Availability: Unix.
2606
Georg Brandl116aa622007-08-15 14:28:22 +00002607
2608.. function:: wait4(pid, options)
2609
2610 Similar to :func:`waitpid`, except a 3-element tuple, containing the child's
2611 process id, exit status indication, and resource usage information is returned.
2612 Refer to :mod:`resource`.\ :func:`getrusage` for details on resource usage
2613 information. The arguments to :func:`wait4` are the same as those provided to
Benjamin Petersonf650e462010-05-06 23:03:05 +00002614 :func:`waitpid`.
2615
2616 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002617
Georg Brandl116aa622007-08-15 14:28:22 +00002618
2619.. data:: WNOHANG
2620
2621 The option for :func:`waitpid` to return immediately if no child process status
2622 is available immediately. The function returns ``(0, 0)`` in this case.
Benjamin Petersonf650e462010-05-06 23:03:05 +00002623
Georg Brandlc575c902008-09-13 17:46:05 +00002624 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002625
2626
2627.. data:: WCONTINUED
2628
2629 This option causes child processes to be reported if they have been continued
Benjamin Petersonf650e462010-05-06 23:03:05 +00002630 from a job control stop since their status was last reported.
2631
2632 Availability: Some Unix systems.
Georg Brandl116aa622007-08-15 14:28:22 +00002633
Georg Brandl116aa622007-08-15 14:28:22 +00002634
2635.. data:: WUNTRACED
2636
2637 This option causes child processes to be reported if they have been stopped but
Benjamin Petersonf650e462010-05-06 23:03:05 +00002638 their current state has not been reported since they were stopped.
2639
2640 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002641
Georg Brandl116aa622007-08-15 14:28:22 +00002642
2643The following functions take a process status code as returned by
2644:func:`system`, :func:`wait`, or :func:`waitpid` as a parameter. They may be
2645used to determine the disposition of a process.
2646
Georg Brandl116aa622007-08-15 14:28:22 +00002647.. function:: WCOREDUMP(status)
2648
Christian Heimesfaf2f632008-01-06 16:59:19 +00002649 Return ``True`` if a core dump was generated for the process, otherwise
Benjamin Petersonf650e462010-05-06 23:03:05 +00002650 return ``False``.
2651
2652 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002653
Georg Brandl116aa622007-08-15 14:28:22 +00002654
2655.. function:: WIFCONTINUED(status)
2656
Christian Heimesfaf2f632008-01-06 16:59:19 +00002657 Return ``True`` if the process has been continued from a job control stop,
Benjamin Petersonf650e462010-05-06 23:03:05 +00002658 otherwise return ``False``.
2659
2660 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002661
Georg Brandl116aa622007-08-15 14:28:22 +00002662
2663.. function:: WIFSTOPPED(status)
2664
Christian Heimesfaf2f632008-01-06 16:59:19 +00002665 Return ``True`` if the process has been stopped, otherwise return
Benjamin Petersonf650e462010-05-06 23:03:05 +00002666 ``False``.
2667
2668 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002669
2670
2671.. function:: WIFSIGNALED(status)
2672
Christian Heimesfaf2f632008-01-06 16:59:19 +00002673 Return ``True`` if the process exited due to a signal, otherwise return
Benjamin Petersonf650e462010-05-06 23:03:05 +00002674 ``False``.
2675
2676 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002677
2678
2679.. function:: WIFEXITED(status)
2680
Christian Heimesfaf2f632008-01-06 16:59:19 +00002681 Return ``True`` if the process exited using the :manpage:`exit(2)` system call,
Benjamin Petersonf650e462010-05-06 23:03:05 +00002682 otherwise return ``False``.
2683
2684 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002685
2686
2687.. function:: WEXITSTATUS(status)
2688
2689 If ``WIFEXITED(status)`` is true, return the integer parameter to the
2690 :manpage:`exit(2)` system call. Otherwise, the return value is meaningless.
Benjamin Petersonf650e462010-05-06 23:03:05 +00002691
Georg Brandlc575c902008-09-13 17:46:05 +00002692 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002693
2694
2695.. function:: WSTOPSIG(status)
2696
Benjamin Petersonf650e462010-05-06 23:03:05 +00002697 Return the signal which caused the process to stop.
2698
2699 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002700
2701
2702.. function:: WTERMSIG(status)
2703
Benjamin Petersonf650e462010-05-06 23:03:05 +00002704 Return the signal which caused the process to exit.
2705
2706 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002707
2708
2709.. _os-path:
2710
2711Miscellaneous System Information
2712--------------------------------
2713
2714
2715.. function:: confstr(name)
2716
2717 Return string-valued system configuration values. *name* specifies the
2718 configuration value to retrieve; it may be a string which is the name of a
2719 defined system value; these names are specified in a number of standards (POSIX,
2720 Unix 95, Unix 98, and others). Some platforms define additional names as well.
2721 The names known to the host operating system are given as the keys of the
2722 ``confstr_names`` dictionary. For configuration variables not included in that
Benjamin Petersonf650e462010-05-06 23:03:05 +00002723 mapping, passing an integer for *name* is also accepted.
Georg Brandl116aa622007-08-15 14:28:22 +00002724
2725 If the configuration value specified by *name* isn't defined, ``None`` is
2726 returned.
2727
2728 If *name* is a string and is not known, :exc:`ValueError` is raised. If a
2729 specific value for *name* is not supported by the host system, even if it is
2730 included in ``confstr_names``, an :exc:`OSError` is raised with
2731 :const:`errno.EINVAL` for the error number.
2732
Benjamin Petersonf650e462010-05-06 23:03:05 +00002733 Availability: Unix
2734
Georg Brandl116aa622007-08-15 14:28:22 +00002735
2736.. data:: confstr_names
2737
2738 Dictionary mapping names accepted by :func:`confstr` to the integer values
2739 defined for those names by the host operating system. This can be used to
Benjamin Petersonf650e462010-05-06 23:03:05 +00002740 determine the set of names known to the system.
2741
2742 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002743
2744
2745.. function:: getloadavg()
2746
Christian Heimesa62da1d2008-01-12 19:39:10 +00002747 Return the number of processes in the system run queue averaged over the last
2748 1, 5, and 15 minutes or raises :exc:`OSError` if the load average was
Benjamin Petersonf650e462010-05-06 23:03:05 +00002749 unobtainable.
2750
2751 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002752
Georg Brandl116aa622007-08-15 14:28:22 +00002753
2754.. function:: sysconf(name)
2755
2756 Return integer-valued system configuration values. If the configuration value
2757 specified by *name* isn't defined, ``-1`` is returned. The comments regarding
2758 the *name* parameter for :func:`confstr` apply here as well; the dictionary that
2759 provides information on the known names is given by ``sysconf_names``.
Benjamin Petersonf650e462010-05-06 23:03:05 +00002760
Georg Brandlc575c902008-09-13 17:46:05 +00002761 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002762
2763
2764.. data:: sysconf_names
2765
2766 Dictionary mapping names accepted by :func:`sysconf` to the integer values
2767 defined for those names by the host operating system. This can be used to
Benjamin Petersonf650e462010-05-06 23:03:05 +00002768 determine the set of names known to the system.
2769
2770 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +00002771
Christian Heimesfaf2f632008-01-06 16:59:19 +00002772The following data values are used to support path manipulation operations. These
Georg Brandl116aa622007-08-15 14:28:22 +00002773are defined for all platforms.
2774
2775Higher-level operations on pathnames are defined in the :mod:`os.path` module.
2776
2777
2778.. data:: curdir
2779
2780 The constant string used by the operating system to refer to the current
Georg Brandlc575c902008-09-13 17:46:05 +00002781 directory. This is ``'.'`` for Windows and POSIX. Also available via
2782 :mod:`os.path`.
Georg Brandl116aa622007-08-15 14:28:22 +00002783
2784
2785.. data:: pardir
2786
2787 The constant string used by the operating system to refer to the parent
Georg Brandlc575c902008-09-13 17:46:05 +00002788 directory. This is ``'..'`` for Windows and POSIX. Also available via
2789 :mod:`os.path`.
Georg Brandl116aa622007-08-15 14:28:22 +00002790
2791
2792.. data:: sep
2793
Georg Brandlc575c902008-09-13 17:46:05 +00002794 The character used by the operating system to separate pathname components.
2795 This is ``'/'`` for POSIX and ``'\\'`` for Windows. Note that knowing this
2796 is not sufficient to be able to parse or concatenate pathnames --- use
Georg Brandl116aa622007-08-15 14:28:22 +00002797 :func:`os.path.split` and :func:`os.path.join` --- but it is occasionally
2798 useful. Also available via :mod:`os.path`.
2799
2800
2801.. data:: altsep
2802
2803 An alternative character used by the operating system to separate pathname
2804 components, or ``None`` if only one separator character exists. This is set to
2805 ``'/'`` on Windows systems where ``sep`` is a backslash. Also available via
2806 :mod:`os.path`.
2807
2808
2809.. data:: extsep
2810
2811 The character which separates the base filename from the extension; for example,
2812 the ``'.'`` in :file:`os.py`. Also available via :mod:`os.path`.
2813
Georg Brandl116aa622007-08-15 14:28:22 +00002814
2815.. data:: pathsep
2816
2817 The character conventionally used by the operating system to separate search
2818 path components (as in :envvar:`PATH`), such as ``':'`` for POSIX or ``';'`` for
2819 Windows. Also available via :mod:`os.path`.
2820
2821
2822.. data:: defpath
2823
2824 The default search path used by :func:`exec\*p\*` and :func:`spawn\*p\*` if the
2825 environment doesn't have a ``'PATH'`` key. Also available via :mod:`os.path`.
2826
2827
2828.. data:: linesep
2829
2830 The string used to separate (or, rather, terminate) lines on the current
Georg Brandlc575c902008-09-13 17:46:05 +00002831 platform. This may be a single character, such as ``'\n'`` for POSIX, or
2832 multiple characters, for example, ``'\r\n'`` for Windows. Do not use
2833 *os.linesep* as a line terminator when writing files opened in text mode (the
2834 default); use a single ``'\n'`` instead, on all platforms.
Georg Brandl116aa622007-08-15 14:28:22 +00002835
2836
2837.. data:: devnull
2838
Georg Brandl850a9902010-05-21 22:04:32 +00002839 The file path of the null device. For example: ``'/dev/null'`` for
2840 POSIX, ``'nul'`` for Windows. Also available via :mod:`os.path`.
Georg Brandl116aa622007-08-15 14:28:22 +00002841
Georg Brandl116aa622007-08-15 14:28:22 +00002842
2843.. _os-miscfunc:
2844
2845Miscellaneous Functions
2846-----------------------
2847
2848
2849.. function:: urandom(n)
2850
2851 Return a string of *n* random bytes suitable for cryptographic use.
2852
2853 This function returns random bytes from an OS-specific randomness source. The
2854 returned data should be unpredictable enough for cryptographic applications,
2855 though its exact quality depends on the OS implementation. On a UNIX-like
2856 system this will query /dev/urandom, and on Windows it will use CryptGenRandom.
2857 If a randomness source is not found, :exc:`NotImplementedError` will be raised.