Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1 | :mod:`os` --- Miscellaneous operating system interfaces |
| 2 | ======================================================= |
| 3 | |
| 4 | .. module:: os |
| 5 | :synopsis: Miscellaneous operating system interfaces. |
| 6 | |
| 7 | |
Georg Brandl | 57fe0f2 | 2008-01-12 10:53:29 +0000 | [diff] [blame] | 8 | This module provides a portable way of using operating system dependent |
| 9 | functionality. If you just want to read or write a file see :func:`open`, if |
| 10 | you want to manipulate paths, see the :mod:`os.path` module, and if you want to |
| 11 | read all the lines in all the files on the command line see the :mod:`fileinput` |
| 12 | module. For creating temporary files and directories see the :mod:`tempfile` |
| 13 | module, and for high-level file and directory handling see the :mod:`shutil` |
| 14 | module. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 15 | |
Georg Brandl | c51d1f0 | 2009-12-19 18:16:31 +0000 | [diff] [blame] | 16 | Notes on the availability of these functions: |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 17 | |
Georg Brandl | c51d1f0 | 2009-12-19 18:16:31 +0000 | [diff] [blame] | 18 | * 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 Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 23 | |
Georg Brandl | c51d1f0 | 2009-12-19 18:16:31 +0000 | [diff] [blame] | 24 | * 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 Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 27 | |
Georg Brandl | c51d1f0 | 2009-12-19 18:16:31 +0000 | [diff] [blame] | 28 | * An "Availability: Unix" note means that this function is commonly found on |
| 29 | Unix systems. It does not make any claims about its existence on a specific |
| 30 | operating system. |
| 31 | |
| 32 | * If not separately noted, all functions that claim "Availability: Unix" are |
| 33 | supported on Mac OS X, which builds on a Unix core. |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 34 | |
| 35 | .. note:: |
| 36 | |
Georg Brandl | 57fe0f2 | 2008-01-12 10:53:29 +0000 | [diff] [blame] | 37 | All functions in this module raise :exc:`OSError` in the case of invalid or |
| 38 | inaccessible file names and paths, or other arguments that have the correct |
| 39 | type, but are not accepted by the operating system. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 40 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 41 | |
| 42 | .. exception:: error |
| 43 | |
Georg Brandl | 57fe0f2 | 2008-01-12 10:53:29 +0000 | [diff] [blame] | 44 | An alias for the built-in :exc:`OSError` exception. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 45 | |
| 46 | |
| 47 | .. data:: name |
| 48 | |
Georg Brandl | c51d1f0 | 2009-12-19 18:16:31 +0000 | [diff] [blame] | 49 | The name of the operating system dependent module imported. The following |
| 50 | names have currently been registered: ``'posix'``, ``'nt'``, ``'mac'``, |
| 51 | ``'os2'``, ``'ce'``, ``'java'``, ``'riscos'``. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 52 | |
| 53 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 54 | .. _os-procinfo: |
| 55 | |
| 56 | Process Parameters |
| 57 | ------------------ |
| 58 | |
| 59 | These functions and data items provide information and operate on the current |
| 60 | process and user. |
| 61 | |
| 62 | |
| 63 | .. data:: environ |
| 64 | |
| 65 | A mapping object representing the string environment. For example, |
| 66 | ``environ['HOME']`` is the pathname of your home directory (on some platforms), |
| 67 | and is equivalent to ``getenv("HOME")`` in C. |
| 68 | |
| 69 | This mapping is captured the first time the :mod:`os` module is imported, |
| 70 | typically during Python startup as part of processing :file:`site.py`. Changes |
| 71 | to the environment made after this time are not reflected in ``os.environ``, |
| 72 | except for changes made by modifying ``os.environ`` directly. |
| 73 | |
| 74 | If the platform supports the :func:`putenv` function, this mapping may be used |
| 75 | to modify the environment as well as query the environment. :func:`putenv` will |
| 76 | be called automatically when the mapping is modified. |
| 77 | |
| 78 | .. note:: |
| 79 | |
| 80 | Calling :func:`putenv` directly does not change ``os.environ``, so it's better |
| 81 | to modify ``os.environ``. |
| 82 | |
| 83 | .. note:: |
| 84 | |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 85 | On some platforms, including FreeBSD and Mac OS X, setting ``environ`` may |
| 86 | cause memory leaks. Refer to the system documentation for |
| 87 | :cfunc:`putenv`. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 88 | |
| 89 | If :func:`putenv` is not provided, a modified copy of this mapping may be |
| 90 | passed to the appropriate process-creation functions to cause child processes |
| 91 | to use a modified environment. |
| 92 | |
Georg Brandl | 4a21268 | 2007-09-20 17:57:59 +0000 | [diff] [blame] | 93 | If the platform supports the :func:`unsetenv` function, you can delete items in |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 94 | this mapping to unset environment variables. :func:`unsetenv` will be called |
Georg Brandl | 4a21268 | 2007-09-20 17:57:59 +0000 | [diff] [blame] | 95 | automatically when an item is deleted from ``os.environ``, and when |
Georg Brandl | 1a94ec2 | 2007-10-24 21:40:38 +0000 | [diff] [blame] | 96 | one of the :meth:`pop` or :meth:`clear` methods is called. |
Georg Brandl | 4a21268 | 2007-09-20 17:57:59 +0000 | [diff] [blame] | 97 | |
| 98 | .. versionchanged:: 2.6 |
Georg Brandl | 1a94ec2 | 2007-10-24 21:40:38 +0000 | [diff] [blame] | 99 | Also unset environment variables when calling :meth:`os.environ.clear` |
| 100 | and :meth:`os.environ.pop`. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 101 | |
| 102 | |
| 103 | .. function:: chdir(path) |
| 104 | fchdir(fd) |
| 105 | getcwd() |
| 106 | :noindex: |
| 107 | |
| 108 | These functions are described in :ref:`os-file-dir`. |
| 109 | |
| 110 | |
| 111 | .. function:: ctermid() |
| 112 | |
| 113 | Return the filename corresponding to the controlling terminal of the process. |
| 114 | Availability: Unix. |
| 115 | |
| 116 | |
| 117 | .. function:: getegid() |
| 118 | |
| 119 | Return the effective group id of the current process. This corresponds to the |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 120 | "set id" bit on the file being executed in the current process. Availability: |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 121 | Unix. |
| 122 | |
| 123 | |
| 124 | .. function:: geteuid() |
| 125 | |
| 126 | .. index:: single: user; effective id |
| 127 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 128 | Return the current process's effective user id. Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 129 | |
| 130 | |
| 131 | .. function:: getgid() |
| 132 | |
| 133 | .. index:: single: process; group |
| 134 | |
| 135 | Return the real group id of the current process. Availability: Unix. |
| 136 | |
| 137 | |
| 138 | .. function:: getgroups() |
| 139 | |
| 140 | Return list of supplemental group ids associated with the current process. |
| 141 | Availability: Unix. |
| 142 | |
| 143 | |
Antoine Pitrou | 30b3b35 | 2009-12-02 20:37:54 +0000 | [diff] [blame] | 144 | .. function:: initgroups(username, gid) |
| 145 | |
| 146 | Call the system initgroups() to initialize the group access list with all of |
| 147 | the groups of which the specified username is a member, plus the specified |
| 148 | group id. Availability: Unix. |
| 149 | |
| 150 | .. versionadded:: 2.7 |
| 151 | |
| 152 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 153 | .. function:: getlogin() |
| 154 | |
| 155 | Return the name of the user logged in on the controlling terminal of the |
| 156 | process. For most purposes, it is more useful to use the environment variable |
| 157 | :envvar:`LOGNAME` to find out who the user is, or |
| 158 | ``pwd.getpwuid(os.getuid())[0]`` to get the login name of the currently |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 159 | effective user id. Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 160 | |
| 161 | |
| 162 | .. function:: getpgid(pid) |
| 163 | |
| 164 | Return the process group id of the process with process id *pid*. If *pid* is 0, |
| 165 | the process group id of the current process is returned. Availability: Unix. |
| 166 | |
| 167 | .. versionadded:: 2.3 |
| 168 | |
| 169 | |
| 170 | .. function:: getpgrp() |
| 171 | |
| 172 | .. index:: single: process; group |
| 173 | |
| 174 | Return the id of the current process group. Availability: Unix. |
| 175 | |
| 176 | |
| 177 | .. function:: getpid() |
| 178 | |
| 179 | .. index:: single: process; id |
| 180 | |
| 181 | Return the current process id. Availability: Unix, Windows. |
| 182 | |
| 183 | |
| 184 | .. function:: getppid() |
| 185 | |
| 186 | .. index:: single: process; id of parent |
| 187 | |
| 188 | Return the parent's process id. Availability: Unix. |
| 189 | |
Georg Brandl | 8d8f874 | 2009-11-28 11:11:50 +0000 | [diff] [blame] | 190 | |
Gregory P. Smith | 761ae0b | 2009-11-27 17:51:12 +0000 | [diff] [blame] | 191 | .. function:: getresuid() |
Martin v. Löwis | 50ea456 | 2009-11-27 13:56:01 +0000 | [diff] [blame] | 192 | |
| 193 | Return a tuple (ruid, euid, suid) denoting the current process's |
| 194 | real, effective, and saved user ids. Availability: Unix. |
| 195 | |
Georg Brandl | 8d8f874 | 2009-11-28 11:11:50 +0000 | [diff] [blame] | 196 | .. versionadded:: 2.7 |
| 197 | |
Martin v. Löwis | 50ea456 | 2009-11-27 13:56:01 +0000 | [diff] [blame] | 198 | |
Gregory P. Smith | 761ae0b | 2009-11-27 17:51:12 +0000 | [diff] [blame] | 199 | .. function:: getresgid() |
Martin v. Löwis | 50ea456 | 2009-11-27 13:56:01 +0000 | [diff] [blame] | 200 | |
| 201 | Return a tuple (rgid, egid, sgid) denoting the current process's |
| 202 | real, effective, and saved user ids. Availability: Unix. |
| 203 | |
Georg Brandl | 8d8f874 | 2009-11-28 11:11:50 +0000 | [diff] [blame] | 204 | .. versionadded:: 2.7 |
| 205 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 206 | |
| 207 | .. function:: getuid() |
| 208 | |
| 209 | .. index:: single: user; id |
| 210 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 211 | Return the current process's user id. Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 212 | |
| 213 | |
| 214 | .. function:: getenv(varname[, value]) |
| 215 | |
| 216 | Return the value of the environment variable *varname* if it exists, or *value* |
| 217 | if it doesn't. *value* defaults to ``None``. Availability: most flavors of |
| 218 | Unix, Windows. |
| 219 | |
| 220 | |
| 221 | .. function:: putenv(varname, value) |
| 222 | |
| 223 | .. index:: single: environment variables; setting |
| 224 | |
| 225 | Set the environment variable named *varname* to the string *value*. Such |
| 226 | changes to the environment affect subprocesses started with :func:`os.system`, |
| 227 | :func:`popen` or :func:`fork` and :func:`execv`. Availability: most flavors of |
| 228 | Unix, Windows. |
| 229 | |
| 230 | .. note:: |
| 231 | |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 232 | On some platforms, including FreeBSD and Mac OS X, setting ``environ`` may |
| 233 | cause memory leaks. Refer to the system documentation for putenv. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 234 | |
| 235 | When :func:`putenv` is supported, assignments to items in ``os.environ`` are |
| 236 | automatically translated into corresponding calls to :func:`putenv`; however, |
| 237 | calls to :func:`putenv` don't update ``os.environ``, so it is actually |
| 238 | preferable to assign to items of ``os.environ``. |
| 239 | |
| 240 | |
| 241 | .. function:: setegid(egid) |
| 242 | |
| 243 | Set the current process's effective group id. Availability: Unix. |
| 244 | |
| 245 | |
| 246 | .. function:: seteuid(euid) |
| 247 | |
| 248 | Set the current process's effective user id. Availability: Unix. |
| 249 | |
| 250 | |
| 251 | .. function:: setgid(gid) |
| 252 | |
| 253 | Set the current process' group id. Availability: Unix. |
| 254 | |
| 255 | |
| 256 | .. function:: setgroups(groups) |
| 257 | |
| 258 | Set the list of supplemental group ids associated with the current process to |
| 259 | *groups*. *groups* must be a sequence, and each element must be an integer |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 260 | identifying a group. This operation is typically available only to the superuser. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 261 | Availability: Unix. |
| 262 | |
| 263 | .. versionadded:: 2.2 |
| 264 | |
| 265 | |
| 266 | .. function:: setpgrp() |
| 267 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 268 | Call the system call :cfunc:`setpgrp` or :cfunc:`setpgrp(0, 0)` depending on |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 269 | which version is implemented (if any). See the Unix manual for the semantics. |
| 270 | Availability: Unix. |
| 271 | |
| 272 | |
| 273 | .. function:: setpgid(pid, pgrp) |
| 274 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 275 | Call the system call :cfunc:`setpgid` to set the process group id of the |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 276 | process with id *pid* to the process group with id *pgrp*. See the Unix manual |
| 277 | for the semantics. Availability: Unix. |
| 278 | |
| 279 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 280 | .. function:: setregid(rgid, egid) |
| 281 | |
| 282 | Set the current process's real and effective group ids. Availability: Unix. |
| 283 | |
Georg Brandl | 8d8f874 | 2009-11-28 11:11:50 +0000 | [diff] [blame] | 284 | |
Martin v. Löwis | 50ea456 | 2009-11-27 13:56:01 +0000 | [diff] [blame] | 285 | .. function:: setresgid(rgid, egid, sgid) |
| 286 | |
| 287 | Set the current process's real, effective, and saved group ids. |
| 288 | Availability: Unix. |
| 289 | |
Georg Brandl | 8d8f874 | 2009-11-28 11:11:50 +0000 | [diff] [blame] | 290 | .. versionadded:: 2.7 |
| 291 | |
Martin v. Löwis | 50ea456 | 2009-11-27 13:56:01 +0000 | [diff] [blame] | 292 | |
| 293 | .. function:: setresuid(ruid, euid, suid) |
| 294 | |
| 295 | Set the current process's real, effective, and saved user ids. |
| 296 | Availibility: Unix. |
| 297 | |
Georg Brandl | 8d8f874 | 2009-11-28 11:11:50 +0000 | [diff] [blame] | 298 | .. versionadded:: 2.7 |
| 299 | |
Martin v. Löwis | 50ea456 | 2009-11-27 13:56:01 +0000 | [diff] [blame] | 300 | |
| 301 | .. function:: setreuid(ruid, euid) |
| 302 | |
| 303 | Set the current process's real and effective user ids. Availability: Unix. |
| 304 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 305 | |
| 306 | .. function:: getsid(pid) |
| 307 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 308 | Call the system call :cfunc:`getsid`. See the Unix manual for the semantics. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 309 | Availability: Unix. |
| 310 | |
| 311 | .. versionadded:: 2.4 |
| 312 | |
| 313 | |
| 314 | .. function:: setsid() |
| 315 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 316 | Call the system call :cfunc:`setsid`. See the Unix manual for the semantics. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 317 | Availability: Unix. |
| 318 | |
| 319 | |
| 320 | .. function:: setuid(uid) |
| 321 | |
| 322 | .. index:: single: user; id, setting |
| 323 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 324 | Set the current process's user id. Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 325 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 326 | |
Georg Brandl | b19be57 | 2007-12-29 10:57:00 +0000 | [diff] [blame] | 327 | .. placed in this section since it relates to errno.... a little weak |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 328 | .. function:: strerror(code) |
| 329 | |
| 330 | Return the error message corresponding to the error code in *code*. |
Georg Brandl | 3fc974f | 2008-05-11 21:16:37 +0000 | [diff] [blame] | 331 | On platforms where :cfunc:`strerror` returns ``NULL`` when given an unknown |
| 332 | error number, :exc:`ValueError` is raised. Availability: Unix, Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 333 | |
| 334 | |
| 335 | .. function:: umask(mask) |
| 336 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 337 | Set the current numeric umask and return the previous umask. Availability: |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 338 | Unix, Windows. |
| 339 | |
| 340 | |
| 341 | .. function:: uname() |
| 342 | |
| 343 | .. index:: |
| 344 | single: gethostname() (in module socket) |
| 345 | single: gethostbyaddr() (in module socket) |
| 346 | |
| 347 | Return a 5-tuple containing information identifying the current operating |
| 348 | system. The tuple contains 5 strings: ``(sysname, nodename, release, version, |
| 349 | machine)``. Some systems truncate the nodename to 8 characters or to the |
| 350 | leading component; a better way to get the hostname is |
| 351 | :func:`socket.gethostname` or even |
| 352 | ``socket.gethostbyaddr(socket.gethostname())``. Availability: recent flavors of |
| 353 | Unix. |
| 354 | |
| 355 | |
| 356 | .. function:: unsetenv(varname) |
| 357 | |
| 358 | .. index:: single: environment variables; deleting |
| 359 | |
| 360 | Unset (delete) the environment variable named *varname*. Such changes to the |
| 361 | environment affect subprocesses started with :func:`os.system`, :func:`popen` or |
| 362 | :func:`fork` and :func:`execv`. Availability: most flavors of Unix, Windows. |
| 363 | |
| 364 | When :func:`unsetenv` is supported, deletion of items in ``os.environ`` is |
| 365 | automatically translated into a corresponding call to :func:`unsetenv`; however, |
| 366 | calls to :func:`unsetenv` don't update ``os.environ``, so it is actually |
| 367 | preferable to delete items of ``os.environ``. |
| 368 | |
| 369 | |
| 370 | .. _os-newstreams: |
| 371 | |
| 372 | File Object Creation |
| 373 | -------------------- |
| 374 | |
| 375 | These functions create new file objects. (See also :func:`open`.) |
| 376 | |
| 377 | |
| 378 | .. function:: fdopen(fd[, mode[, bufsize]]) |
| 379 | |
| 380 | .. index:: single: I/O control; buffering |
| 381 | |
| 382 | Return an open file object connected to the file descriptor *fd*. The *mode* |
| 383 | and *bufsize* arguments have the same meaning as the corresponding arguments to |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 384 | the built-in :func:`open` function. Availability: Unix, Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 385 | |
| 386 | .. versionchanged:: 2.3 |
| 387 | When specified, the *mode* argument must now start with one of the letters |
| 388 | ``'r'``, ``'w'``, or ``'a'``, otherwise a :exc:`ValueError` is raised. |
| 389 | |
| 390 | .. versionchanged:: 2.5 |
| 391 | On Unix, when the *mode* argument starts with ``'a'``, the *O_APPEND* flag is |
| 392 | set on the file descriptor (which the :cfunc:`fdopen` implementation already |
| 393 | does on most platforms). |
| 394 | |
| 395 | |
| 396 | .. function:: popen(command[, mode[, bufsize]]) |
| 397 | |
| 398 | Open a pipe to or from *command*. The return value is an open file object |
| 399 | connected to the pipe, which can be read or written depending on whether *mode* |
| 400 | is ``'r'`` (default) or ``'w'``. The *bufsize* argument has the same meaning as |
| 401 | the corresponding argument to the built-in :func:`open` function. The exit |
| 402 | status of the command (encoded in the format specified for :func:`wait`) is |
Georg Brandl | 012408c | 2009-05-22 09:43:17 +0000 | [diff] [blame] | 403 | available as the return value of the :meth:`~file.close` method of the file object, |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 404 | except that when the exit status is zero (termination without errors), ``None`` |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 405 | is returned. Availability: Unix, Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 406 | |
| 407 | .. deprecated:: 2.6 |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 408 | This function is obsolete. Use the :mod:`subprocess` module. Check |
Georg Brandl | 0ba92b2 | 2008-06-22 09:05:29 +0000 | [diff] [blame] | 409 | especially the :ref:`subprocess-replacements` section. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 410 | |
| 411 | .. versionchanged:: 2.0 |
| 412 | This function worked unreliably under Windows in earlier versions of Python. |
| 413 | This was due to the use of the :cfunc:`_popen` function from the libraries |
| 414 | provided with Windows. Newer versions of Python do not use the broken |
| 415 | implementation from the Windows libraries. |
| 416 | |
| 417 | |
| 418 | .. function:: tmpfile() |
| 419 | |
| 420 | Return a new file object opened in update mode (``w+b``). The file has no |
| 421 | directory entries associated with it and will be automatically deleted once |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 422 | there are no file descriptors for the file. Availability: Unix, |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 423 | Windows. |
| 424 | |
| 425 | There are a number of different :func:`popen\*` functions that provide slightly |
| 426 | different ways to create subprocesses. |
| 427 | |
| 428 | .. deprecated:: 2.6 |
| 429 | All of the :func:`popen\*` functions are obsolete. Use the :mod:`subprocess` |
| 430 | module. |
| 431 | |
| 432 | For each of the :func:`popen\*` variants, if *bufsize* is specified, it |
| 433 | specifies the buffer size for the I/O pipes. *mode*, if provided, should be the |
| 434 | string ``'b'`` or ``'t'``; on Windows this is needed to determine whether the |
| 435 | file objects should be opened in binary or text mode. The default value for |
| 436 | *mode* is ``'t'``. |
| 437 | |
| 438 | Also, for each of these variants, on Unix, *cmd* may be a sequence, in which |
| 439 | case arguments will be passed directly to the program without shell intervention |
| 440 | (as with :func:`os.spawnv`). If *cmd* is a string it will be passed to the shell |
| 441 | (as with :func:`os.system`). |
| 442 | |
| 443 | These methods do not make it possible to retrieve the exit status from the child |
| 444 | processes. The only way to control the input and output streams and also |
| 445 | retrieve the return codes is to use the :mod:`subprocess` module; these are only |
| 446 | available on Unix. |
| 447 | |
| 448 | For a discussion of possible deadlock conditions related to the use of these |
| 449 | functions, see :ref:`popen2-flow-control`. |
| 450 | |
| 451 | |
| 452 | .. function:: popen2(cmd[, mode[, bufsize]]) |
| 453 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 454 | Execute *cmd* as a sub-process and return the file objects ``(child_stdin, |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 455 | child_stdout)``. |
| 456 | |
| 457 | .. deprecated:: 2.6 |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 458 | This function is obsolete. Use the :mod:`subprocess` module. Check |
Georg Brandl | 0ba92b2 | 2008-06-22 09:05:29 +0000 | [diff] [blame] | 459 | especially the :ref:`subprocess-replacements` section. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 460 | |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 461 | Availability: Unix, Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 462 | |
| 463 | .. versionadded:: 2.0 |
| 464 | |
| 465 | |
| 466 | .. function:: popen3(cmd[, mode[, bufsize]]) |
| 467 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 468 | Execute *cmd* as a sub-process and return the file objects ``(child_stdin, |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 469 | child_stdout, child_stderr)``. |
| 470 | |
| 471 | .. deprecated:: 2.6 |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 472 | This function is obsolete. Use the :mod:`subprocess` module. Check |
Georg Brandl | 0ba92b2 | 2008-06-22 09:05:29 +0000 | [diff] [blame] | 473 | especially the :ref:`subprocess-replacements` section. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 474 | |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 475 | Availability: Unix, Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 476 | |
| 477 | .. versionadded:: 2.0 |
| 478 | |
| 479 | |
| 480 | .. function:: popen4(cmd[, mode[, bufsize]]) |
| 481 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 482 | Execute *cmd* as a sub-process and return the file objects ``(child_stdin, |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 483 | child_stdout_and_stderr)``. |
| 484 | |
| 485 | .. deprecated:: 2.6 |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 486 | This function is obsolete. Use the :mod:`subprocess` module. Check |
Georg Brandl | 0ba92b2 | 2008-06-22 09:05:29 +0000 | [diff] [blame] | 487 | especially the :ref:`subprocess-replacements` section. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 488 | |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 489 | Availability: Unix, Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 490 | |
| 491 | .. versionadded:: 2.0 |
| 492 | |
| 493 | (Note that ``child_stdin, child_stdout, and child_stderr`` are named from the |
| 494 | point of view of the child process, so *child_stdin* is the child's standard |
| 495 | input.) |
| 496 | |
| 497 | This functionality is also available in the :mod:`popen2` module using functions |
| 498 | of the same names, but the return values of those functions have a different |
| 499 | order. |
| 500 | |
| 501 | |
| 502 | .. _os-fd-ops: |
| 503 | |
| 504 | File Descriptor Operations |
| 505 | -------------------------- |
| 506 | |
| 507 | These functions operate on I/O streams referenced using file descriptors. |
| 508 | |
| 509 | File descriptors are small integers corresponding to a file that has been opened |
| 510 | by the current process. For example, standard input is usually file descriptor |
| 511 | 0, standard output is 1, and standard error is 2. Further files opened by a |
| 512 | process will then be assigned 3, 4, 5, and so forth. The name "file descriptor" |
| 513 | is slightly deceptive; on Unix platforms, sockets and pipes are also referenced |
| 514 | by file descriptors. |
| 515 | |
Georg Brandl | 49b9192 | 2010-04-02 08:39:09 +0000 | [diff] [blame] | 516 | The :meth:`~file.fileno` method can be used to obtain the file descriptor |
| 517 | associated with a file object when required. Note that using the file |
| 518 | descriptor directly will bypass the file object methods, ignoring aspects such |
| 519 | as internal buffering of data. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 520 | |
| 521 | .. function:: close(fd) |
| 522 | |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 523 | Close file descriptor *fd*. Availability: Unix, Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 524 | |
| 525 | .. note:: |
| 526 | |
| 527 | This function is intended for low-level I/O and must be applied to a file |
Georg Brandl | 012408c | 2009-05-22 09:43:17 +0000 | [diff] [blame] | 528 | descriptor as returned by :func:`os.open` or :func:`pipe`. To close a "file |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 529 | object" returned by the built-in function :func:`open` or by :func:`popen` or |
Georg Brandl | 012408c | 2009-05-22 09:43:17 +0000 | [diff] [blame] | 530 | :func:`fdopen`, use its :meth:`~file.close` method. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 531 | |
| 532 | |
Georg Brandl | 309501a | 2008-01-19 20:22:13 +0000 | [diff] [blame] | 533 | .. function:: closerange(fd_low, fd_high) |
| 534 | |
| 535 | Close all file descriptors from *fd_low* (inclusive) to *fd_high* (exclusive), |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 536 | ignoring errors. Availability: Unix, Windows. Equivalent to:: |
Georg Brandl | 309501a | 2008-01-19 20:22:13 +0000 | [diff] [blame] | 537 | |
| 538 | for fd in xrange(fd_low, fd_high): |
| 539 | try: |
| 540 | os.close(fd) |
| 541 | except OSError: |
| 542 | pass |
| 543 | |
| 544 | .. versionadded:: 2.6 |
| 545 | |
| 546 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 547 | .. function:: dup(fd) |
| 548 | |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 549 | Return a duplicate of file descriptor *fd*. Availability: Unix, |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 550 | Windows. |
| 551 | |
| 552 | |
| 553 | .. function:: dup2(fd, fd2) |
| 554 | |
| 555 | Duplicate file descriptor *fd* to *fd2*, closing the latter first if necessary. |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 556 | Availability: Unix, Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 557 | |
| 558 | |
Christian Heimes | 3628187 | 2007-11-30 21:11:28 +0000 | [diff] [blame] | 559 | .. function:: fchmod(fd, mode) |
| 560 | |
| 561 | Change the mode of the file given by *fd* to the numeric *mode*. See the docs |
| 562 | for :func:`chmod` for possible values of *mode*. Availability: Unix. |
| 563 | |
Georg Brandl | 81ddc1a | 2007-11-30 22:04:45 +0000 | [diff] [blame] | 564 | .. versionadded:: 2.6 |
| 565 | |
Christian Heimes | 3628187 | 2007-11-30 21:11:28 +0000 | [diff] [blame] | 566 | |
| 567 | .. function:: fchown(fd, uid, gid) |
| 568 | |
| 569 | Change the owner and group id of the file given by *fd* to the numeric *uid* |
| 570 | and *gid*. To leave one of the ids unchanged, set it to -1. |
| 571 | Availability: Unix. |
| 572 | |
Georg Brandl | 81ddc1a | 2007-11-30 22:04:45 +0000 | [diff] [blame] | 573 | .. versionadded:: 2.6 |
| 574 | |
Christian Heimes | 3628187 | 2007-11-30 21:11:28 +0000 | [diff] [blame] | 575 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 576 | .. function:: fdatasync(fd) |
| 577 | |
| 578 | Force write of file with filedescriptor *fd* to disk. Does not force update of |
| 579 | metadata. Availability: Unix. |
| 580 | |
Benjamin Peterson | ecf3c62 | 2009-05-30 03:10:52 +0000 | [diff] [blame] | 581 | .. note:: |
| 582 | This function is not available on MacOS. |
| 583 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 584 | |
| 585 | .. function:: fpathconf(fd, name) |
| 586 | |
| 587 | Return system configuration information relevant to an open file. *name* |
| 588 | specifies the configuration value to retrieve; it may be a string which is the |
| 589 | name of a defined system value; these names are specified in a number of |
| 590 | standards (POSIX.1, Unix 95, Unix 98, and others). Some platforms define |
| 591 | additional names as well. The names known to the host operating system are |
| 592 | given in the ``pathconf_names`` dictionary. For configuration variables not |
| 593 | included in that mapping, passing an integer for *name* is also accepted. |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 594 | Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 595 | |
| 596 | If *name* is a string and is not known, :exc:`ValueError` is raised. If a |
| 597 | specific value for *name* is not supported by the host system, even if it is |
| 598 | included in ``pathconf_names``, an :exc:`OSError` is raised with |
| 599 | :const:`errno.EINVAL` for the error number. |
| 600 | |
| 601 | |
| 602 | .. function:: fstat(fd) |
| 603 | |
| 604 | Return status for file descriptor *fd*, like :func:`stat`. Availability: |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 605 | Unix, Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 606 | |
| 607 | |
| 608 | .. function:: fstatvfs(fd) |
| 609 | |
| 610 | Return information about the filesystem containing the file associated with file |
| 611 | descriptor *fd*, like :func:`statvfs`. Availability: Unix. |
| 612 | |
| 613 | |
| 614 | .. function:: fsync(fd) |
| 615 | |
| 616 | Force write of file with filedescriptor *fd* to disk. On Unix, this calls the |
| 617 | native :cfunc:`fsync` function; on Windows, the MS :cfunc:`_commit` function. |
| 618 | |
| 619 | If you're starting with a Python file object *f*, first do ``f.flush()``, and |
| 620 | then do ``os.fsync(f.fileno())``, to ensure that all internal buffers associated |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 621 | with *f* are written to disk. Availability: Unix, and Windows |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 622 | starting in 2.2.3. |
| 623 | |
| 624 | |
| 625 | .. function:: ftruncate(fd, length) |
| 626 | |
| 627 | Truncate the file corresponding to file descriptor *fd*, so that it is at most |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 628 | *length* bytes in size. Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 629 | |
| 630 | |
| 631 | .. function:: isatty(fd) |
| 632 | |
| 633 | Return ``True`` if the file descriptor *fd* is open and connected to a |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 634 | tty(-like) device, else ``False``. Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 635 | |
| 636 | |
| 637 | .. function:: lseek(fd, pos, how) |
| 638 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 639 | Set the current position of file descriptor *fd* to position *pos*, modified |
| 640 | by *how*: :const:`SEEK_SET` or ``0`` to set the position relative to the |
| 641 | beginning of the file; :const:`SEEK_CUR` or ``1`` to set it relative to the |
| 642 | current position; :const:`os.SEEK_END` or ``2`` to set it relative to the end of |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 643 | the file. Availability: Unix, Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 644 | |
| 645 | |
Georg Brandl | 6c50efe | 2010-04-14 13:50:31 +0000 | [diff] [blame] | 646 | .. data:: SEEK_SET |
| 647 | SEEK_CUR |
| 648 | SEEK_END |
| 649 | |
| 650 | Parameters to the :func:`lseek` function. Their values are 0, 1, and 2, |
| 651 | respectively. Availability: Windows, Unix. |
| 652 | |
| 653 | .. versionadded:: 2.5 |
| 654 | |
| 655 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 656 | .. function:: open(file, flags[, mode]) |
| 657 | |
| 658 | Open the file *file* and set various flags according to *flags* and possibly its |
| 659 | mode according to *mode*. The default *mode* is ``0777`` (octal), and the |
| 660 | current umask value is first masked out. Return the file descriptor for the |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 661 | newly opened file. Availability: Unix, Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 662 | |
| 663 | For a description of the flag and mode values, see the C run-time documentation; |
| 664 | flag constants (like :const:`O_RDONLY` and :const:`O_WRONLY`) are defined in |
Georg Brandl | 4a589c3 | 2010-04-14 19:16:38 +0000 | [diff] [blame^] | 665 | this module too (see :ref:`open-constants`). In particular, on Windows adding |
| 666 | :const:`O_BINARY` is needed to open files in binary mode. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 667 | |
| 668 | .. note:: |
| 669 | |
Georg Brandl | 9fa61bb | 2009-07-26 14:19:57 +0000 | [diff] [blame] | 670 | This function is intended for low-level I/O. For normal usage, use the |
| 671 | built-in function :func:`open`, which returns a "file object" with |
| 672 | :meth:`~file.read` and :meth:`~file.write` methods (and many more). To |
| 673 | wrap a file descriptor in a "file object", use :func:`fdopen`. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 674 | |
| 675 | |
| 676 | .. function:: openpty() |
| 677 | |
| 678 | .. index:: module: pty |
| 679 | |
| 680 | Open a new pseudo-terminal pair. Return a pair of file descriptors ``(master, |
| 681 | slave)`` for the pty and the tty, respectively. For a (slightly) more portable |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 682 | approach, use the :mod:`pty` module. Availability: some flavors of |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 683 | Unix. |
| 684 | |
| 685 | |
| 686 | .. function:: pipe() |
| 687 | |
| 688 | Create a pipe. Return a pair of file descriptors ``(r, w)`` usable for reading |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 689 | and writing, respectively. Availability: Unix, Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 690 | |
| 691 | |
| 692 | .. function:: read(fd, n) |
| 693 | |
| 694 | Read at most *n* bytes from file descriptor *fd*. Return a string containing the |
| 695 | bytes read. If the end of the file referred to by *fd* has been reached, an |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 696 | empty string is returned. Availability: Unix, Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 697 | |
| 698 | .. note:: |
| 699 | |
| 700 | This function is intended for low-level I/O and must be applied to a file |
Georg Brandl | 012408c | 2009-05-22 09:43:17 +0000 | [diff] [blame] | 701 | descriptor as returned by :func:`os.open` or :func:`pipe`. To read a "file object" |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 702 | returned by the built-in function :func:`open` or by :func:`popen` or |
Georg Brandl | 012408c | 2009-05-22 09:43:17 +0000 | [diff] [blame] | 703 | :func:`fdopen`, or :data:`sys.stdin`, use its :meth:`~file.read` or |
| 704 | :meth:`~file.readline` methods. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 705 | |
| 706 | |
| 707 | .. function:: tcgetpgrp(fd) |
| 708 | |
| 709 | Return the process group associated with the terminal given by *fd* (an open |
Georg Brandl | 012408c | 2009-05-22 09:43:17 +0000 | [diff] [blame] | 710 | file descriptor as returned by :func:`os.open`). Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 711 | |
| 712 | |
| 713 | .. function:: tcsetpgrp(fd, pg) |
| 714 | |
| 715 | Set the process group associated with the terminal given by *fd* (an open file |
Georg Brandl | 012408c | 2009-05-22 09:43:17 +0000 | [diff] [blame] | 716 | descriptor as returned by :func:`os.open`) to *pg*. Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 717 | |
| 718 | |
| 719 | .. function:: ttyname(fd) |
| 720 | |
| 721 | Return a string which specifies the terminal device associated with |
Georg Brandl | bb75e4e | 2007-10-21 10:46:24 +0000 | [diff] [blame] | 722 | file descriptor *fd*. If *fd* is not associated with a terminal device, an |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 723 | exception is raised. Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 724 | |
| 725 | |
| 726 | .. function:: write(fd, str) |
| 727 | |
| 728 | Write the string *str* to file descriptor *fd*. Return the number of bytes |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 729 | actually written. Availability: Unix, Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 730 | |
| 731 | .. note:: |
| 732 | |
| 733 | This function is intended for low-level I/O and must be applied to a file |
Georg Brandl | 012408c | 2009-05-22 09:43:17 +0000 | [diff] [blame] | 734 | descriptor as returned by :func:`os.open` or :func:`pipe`. To write a "file |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 735 | object" returned by the built-in function :func:`open` or by :func:`popen` or |
Georg Brandl | 012408c | 2009-05-22 09:43:17 +0000 | [diff] [blame] | 736 | :func:`fdopen`, or :data:`sys.stdout` or :data:`sys.stderr`, use its |
| 737 | :meth:`~file.write` method. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 738 | |
Georg Brandl | 6c50efe | 2010-04-14 13:50:31 +0000 | [diff] [blame] | 739 | |
| 740 | .. _open-constants: |
| 741 | |
| 742 | ``open()`` flag constants |
| 743 | ~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 744 | |
Georg Brandl | 0c880bd | 2008-12-05 08:02:17 +0000 | [diff] [blame] | 745 | The following constants are options for the *flags* parameter to the |
Georg Brandl | 012408c | 2009-05-22 09:43:17 +0000 | [diff] [blame] | 746 | :func:`~os.open` function. They can be combined using the bitwise OR operator |
Georg Brandl | 0c880bd | 2008-12-05 08:02:17 +0000 | [diff] [blame] | 747 | ``|``. Some of them are not available on all platforms. For descriptions of |
Georg Brandl | e70ff4b | 2008-12-05 09:25:32 +0000 | [diff] [blame] | 748 | their availability and use, consult the :manpage:`open(2)` manual page on Unix |
Doug Hellmann | 1d18b5b | 2009-09-20 20:44:13 +0000 | [diff] [blame] | 749 | or `the MSDN <http://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 750 | |
| 751 | |
| 752 | .. data:: O_RDONLY |
| 753 | O_WRONLY |
| 754 | O_RDWR |
| 755 | O_APPEND |
| 756 | O_CREAT |
| 757 | O_EXCL |
| 758 | O_TRUNC |
| 759 | |
Georg Brandl | 0c880bd | 2008-12-05 08:02:17 +0000 | [diff] [blame] | 760 | These constants are available on Unix and Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 761 | |
| 762 | |
| 763 | .. data:: O_DSYNC |
| 764 | O_RSYNC |
| 765 | O_SYNC |
| 766 | O_NDELAY |
| 767 | O_NONBLOCK |
| 768 | O_NOCTTY |
| 769 | O_SHLOCK |
| 770 | O_EXLOCK |
| 771 | |
Georg Brandl | 0c880bd | 2008-12-05 08:02:17 +0000 | [diff] [blame] | 772 | These constants are only available on Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 773 | |
| 774 | |
| 775 | .. data:: O_BINARY |
Georg Brandl | b67da6e | 2007-11-24 13:56:09 +0000 | [diff] [blame] | 776 | O_NOINHERIT |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 777 | O_SHORT_LIVED |
| 778 | O_TEMPORARY |
| 779 | O_RANDOM |
| 780 | O_SEQUENTIAL |
| 781 | O_TEXT |
| 782 | |
Georg Brandl | 0c880bd | 2008-12-05 08:02:17 +0000 | [diff] [blame] | 783 | These constants are only available on Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 784 | |
| 785 | |
Georg Brandl | ae6b9f3 | 2008-05-16 13:41:26 +0000 | [diff] [blame] | 786 | .. data:: O_ASYNC |
| 787 | O_DIRECT |
Georg Brandl | b67da6e | 2007-11-24 13:56:09 +0000 | [diff] [blame] | 788 | O_DIRECTORY |
| 789 | O_NOFOLLOW |
| 790 | O_NOATIME |
| 791 | |
Georg Brandl | 0c880bd | 2008-12-05 08:02:17 +0000 | [diff] [blame] | 792 | These constants are GNU extensions and not present if they are not defined by |
| 793 | the C library. |
Georg Brandl | b67da6e | 2007-11-24 13:56:09 +0000 | [diff] [blame] | 794 | |
| 795 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 796 | .. _os-file-dir: |
| 797 | |
| 798 | Files and Directories |
| 799 | --------------------- |
| 800 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 801 | .. function:: access(path, mode) |
| 802 | |
| 803 | Use the real uid/gid to test for access to *path*. Note that most operations |
| 804 | will use the effective uid/gid, therefore this routine can be used in a |
| 805 | suid/sgid environment to test if the invoking user has the specified access to |
| 806 | *path*. *mode* should be :const:`F_OK` to test the existence of *path*, or it |
| 807 | can be the inclusive OR of one or more of :const:`R_OK`, :const:`W_OK`, and |
| 808 | :const:`X_OK` to test permissions. Return :const:`True` if access is allowed, |
| 809 | :const:`False` if not. See the Unix man page :manpage:`access(2)` for more |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 810 | information. Availability: Unix, Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 811 | |
| 812 | .. note:: |
| 813 | |
Georg Brandl | 9fa61bb | 2009-07-26 14:19:57 +0000 | [diff] [blame] | 814 | Using :func:`access` to check if a user is authorized to e.g. open a file |
| 815 | before actually doing so using :func:`open` creates a security hole, |
| 816 | because the user might exploit the short time interval between checking |
| 817 | and opening the file to manipulate it. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 818 | |
| 819 | .. note:: |
| 820 | |
| 821 | I/O operations may fail even when :func:`access` indicates that they would |
| 822 | succeed, particularly for operations on network filesystems which may have |
| 823 | permissions semantics beyond the usual POSIX permission-bit model. |
| 824 | |
| 825 | |
| 826 | .. data:: F_OK |
| 827 | |
| 828 | Value to pass as the *mode* parameter of :func:`access` to test the existence of |
| 829 | *path*. |
| 830 | |
| 831 | |
| 832 | .. data:: R_OK |
| 833 | |
| 834 | Value to include in the *mode* parameter of :func:`access` to test the |
| 835 | readability of *path*. |
| 836 | |
| 837 | |
| 838 | .. data:: W_OK |
| 839 | |
| 840 | Value to include in the *mode* parameter of :func:`access` to test the |
| 841 | writability of *path*. |
| 842 | |
| 843 | |
| 844 | .. data:: X_OK |
| 845 | |
| 846 | Value to include in the *mode* parameter of :func:`access` to determine if |
| 847 | *path* can be executed. |
| 848 | |
| 849 | |
| 850 | .. function:: chdir(path) |
| 851 | |
| 852 | .. index:: single: directory; changing |
| 853 | |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 854 | Change the current working directory to *path*. Availability: Unix, |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 855 | Windows. |
| 856 | |
| 857 | |
| 858 | .. function:: fchdir(fd) |
| 859 | |
| 860 | Change the current working directory to the directory represented by the file |
| 861 | descriptor *fd*. The descriptor must refer to an opened directory, not an open |
| 862 | file. Availability: Unix. |
| 863 | |
| 864 | .. versionadded:: 2.3 |
| 865 | |
| 866 | |
| 867 | .. function:: getcwd() |
| 868 | |
| 869 | Return a string representing the current working directory. Availability: |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 870 | Unix, Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 871 | |
| 872 | |
| 873 | .. function:: getcwdu() |
| 874 | |
| 875 | Return a Unicode object representing the current working directory. |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 876 | Availability: Unix, Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 877 | |
| 878 | .. versionadded:: 2.3 |
| 879 | |
| 880 | |
| 881 | .. function:: chflags(path, flags) |
| 882 | |
| 883 | Set the flags of *path* to the numeric *flags*. *flags* may take a combination |
| 884 | (bitwise OR) of the following values (as defined in the :mod:`stat` module): |
| 885 | |
| 886 | * ``UF_NODUMP`` |
| 887 | * ``UF_IMMUTABLE`` |
| 888 | * ``UF_APPEND`` |
| 889 | * ``UF_OPAQUE`` |
| 890 | * ``UF_NOUNLINK`` |
| 891 | * ``SF_ARCHIVED`` |
| 892 | * ``SF_IMMUTABLE`` |
| 893 | * ``SF_APPEND`` |
| 894 | * ``SF_NOUNLINK`` |
| 895 | * ``SF_SNAPSHOT`` |
| 896 | |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 897 | Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 898 | |
| 899 | .. versionadded:: 2.6 |
| 900 | |
| 901 | |
| 902 | .. function:: chroot(path) |
| 903 | |
| 904 | Change the root directory of the current process to *path*. Availability: |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 905 | Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 906 | |
| 907 | .. versionadded:: 2.2 |
| 908 | |
| 909 | |
| 910 | .. function:: chmod(path, mode) |
| 911 | |
| 912 | Change the mode of *path* to the numeric *mode*. *mode* may take one of the |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 913 | following values (as defined in the :mod:`stat` module) or bitwise ORed |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 914 | combinations of them: |
| 915 | |
| 916 | |
R. David Murray | fbba7cd | 2009-07-02 18:19:20 +0000 | [diff] [blame] | 917 | * :data:`stat.S_ISUID` |
| 918 | * :data:`stat.S_ISGID` |
| 919 | * :data:`stat.S_ENFMT` |
| 920 | * :data:`stat.S_ISVTX` |
| 921 | * :data:`stat.S_IREAD` |
| 922 | * :data:`stat.S_IWRITE` |
| 923 | * :data:`stat.S_IEXEC` |
| 924 | * :data:`stat.S_IRWXU` |
| 925 | * :data:`stat.S_IRUSR` |
| 926 | * :data:`stat.S_IWUSR` |
| 927 | * :data:`stat.S_IXUSR` |
| 928 | * :data:`stat.S_IRWXG` |
| 929 | * :data:`stat.S_IRGRP` |
| 930 | * :data:`stat.S_IWGRP` |
| 931 | * :data:`stat.S_IXGRP` |
| 932 | * :data:`stat.S_IRWXO` |
| 933 | * :data:`stat.S_IROTH` |
| 934 | * :data:`stat.S_IWOTH` |
| 935 | * :data:`stat.S_IXOTH` |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 936 | |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 937 | Availability: Unix, Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 938 | |
| 939 | .. note:: |
| 940 | |
| 941 | Although Windows supports :func:`chmod`, you can only set the file's read-only |
| 942 | flag with it (via the ``stat.S_IWRITE`` and ``stat.S_IREAD`` |
| 943 | constants or a corresponding integer value). All other bits are |
| 944 | ignored. |
| 945 | |
| 946 | |
| 947 | .. function:: chown(path, uid, gid) |
| 948 | |
| 949 | Change the owner and group id of *path* to the numeric *uid* and *gid*. To leave |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 950 | one of the ids unchanged, set it to -1. Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 951 | |
| 952 | |
| 953 | .. function:: lchflags(path, flags) |
| 954 | |
| 955 | Set the flags of *path* to the numeric *flags*, like :func:`chflags`, but do not |
| 956 | follow symbolic links. Availability: Unix. |
| 957 | |
| 958 | .. versionadded:: 2.6 |
| 959 | |
| 960 | |
Georg Brandl | 81ddc1a | 2007-11-30 22:04:45 +0000 | [diff] [blame] | 961 | .. function:: lchmod(path, mode) |
| 962 | |
| 963 | Change the mode of *path* to the numeric *mode*. If path is a symlink, this |
| 964 | affects the symlink rather than the target. See the docs for :func:`chmod` |
| 965 | for possible values of *mode*. Availability: Unix. |
| 966 | |
| 967 | .. versionadded:: 2.6 |
| 968 | |
| 969 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 970 | .. function:: lchown(path, uid, gid) |
| 971 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 972 | Change the owner and group id of *path* to the numeric *uid* and *gid*. This |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 973 | function will not follow symbolic links. Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 974 | |
| 975 | .. versionadded:: 2.3 |
| 976 | |
| 977 | |
Benjamin Peterson | 0e92858 | 2009-03-28 19:16:10 +0000 | [diff] [blame] | 978 | .. function:: link(source, link_name) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 979 | |
Benjamin Peterson | 0e92858 | 2009-03-28 19:16:10 +0000 | [diff] [blame] | 980 | Create a hard link pointing to *source* named *link_name*. Availability: |
| 981 | Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 982 | |
| 983 | |
| 984 | .. function:: listdir(path) |
| 985 | |
Georg Brandl | 6234291 | 2008-11-24 19:56:47 +0000 | [diff] [blame] | 986 | Return a list containing the names of the entries in the directory given by |
| 987 | *path*. The list is in arbitrary order. It does not include the special |
| 988 | entries ``'.'`` and ``'..'`` even if they are present in the |
| 989 | directory. Availability: Unix, Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 990 | |
| 991 | .. versionchanged:: 2.3 |
| 992 | On Windows NT/2k/XP and Unix, if *path* is a Unicode object, the result will be |
Georg Brandl | d933cc2 | 2009-05-16 11:21:29 +0000 | [diff] [blame] | 993 | a list of Unicode objects. Undecodable filenames will still be returned as |
| 994 | string objects. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 995 | |
| 996 | |
| 997 | .. function:: lstat(path) |
| 998 | |
Georg Brandl | 03b15c6 | 2007-11-01 17:19:33 +0000 | [diff] [blame] | 999 | Like :func:`stat`, but do not follow symbolic links. This is an alias for |
| 1000 | :func:`stat` on platforms that do not support symbolic links, such as |
| 1001 | Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1002 | |
| 1003 | |
| 1004 | .. function:: mkfifo(path[, mode]) |
| 1005 | |
| 1006 | Create a FIFO (a named pipe) named *path* with numeric mode *mode*. The default |
| 1007 | *mode* is ``0666`` (octal). The current umask value is first masked out from |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1008 | the mode. Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1009 | |
| 1010 | FIFOs are pipes that can be accessed like regular files. FIFOs exist until they |
| 1011 | are deleted (for example with :func:`os.unlink`). Generally, FIFOs are used as |
| 1012 | rendezvous between "client" and "server" type processes: the server opens the |
| 1013 | FIFO for reading, and the client opens it for writing. Note that :func:`mkfifo` |
| 1014 | doesn't open the FIFO --- it just creates the rendezvous point. |
| 1015 | |
| 1016 | |
| 1017 | .. function:: mknod(filename[, mode=0600, device]) |
| 1018 | |
| 1019 | Create a filesystem node (file, device special file or named pipe) named |
| 1020 | *filename*. *mode* specifies both the permissions to use and the type of node to |
| 1021 | be created, being combined (bitwise OR) with one of ``stat.S_IFREG``, |
| 1022 | ``stat.S_IFCHR``, ``stat.S_IFBLK``, |
| 1023 | and ``stat.S_IFIFO`` (those constants are available in :mod:`stat`). |
| 1024 | For ``stat.S_IFCHR`` and |
| 1025 | ``stat.S_IFBLK``, *device* defines the newly created device special file (probably using |
| 1026 | :func:`os.makedev`), otherwise it is ignored. |
| 1027 | |
| 1028 | .. versionadded:: 2.3 |
| 1029 | |
| 1030 | |
| 1031 | .. function:: major(device) |
| 1032 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1033 | Extract the device major number from a raw device number (usually the |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1034 | :attr:`st_dev` or :attr:`st_rdev` field from :ctype:`stat`). |
| 1035 | |
| 1036 | .. versionadded:: 2.3 |
| 1037 | |
| 1038 | |
| 1039 | .. function:: minor(device) |
| 1040 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1041 | Extract the device minor number from a raw device number (usually the |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1042 | :attr:`st_dev` or :attr:`st_rdev` field from :ctype:`stat`). |
| 1043 | |
| 1044 | .. versionadded:: 2.3 |
| 1045 | |
| 1046 | |
| 1047 | .. function:: makedev(major, minor) |
| 1048 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1049 | Compose a raw device number from the major and minor device numbers. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1050 | |
| 1051 | .. versionadded:: 2.3 |
| 1052 | |
| 1053 | |
| 1054 | .. function:: mkdir(path[, mode]) |
| 1055 | |
| 1056 | Create a directory named *path* with numeric mode *mode*. The default *mode* is |
| 1057 | ``0777`` (octal). On some systems, *mode* is ignored. Where it is used, the |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1058 | current umask value is first masked out. Availability: Unix, Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1059 | |
Mark Summerfield | ac3d429 | 2007-11-02 08:24:59 +0000 | [diff] [blame] | 1060 | It is also possible to create temporary directories; see the |
| 1061 | :mod:`tempfile` module's :func:`tempfile.mkdtemp` function. |
| 1062 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1063 | |
| 1064 | .. function:: makedirs(path[, mode]) |
| 1065 | |
| 1066 | .. index:: |
| 1067 | single: directory; creating |
| 1068 | single: UNC paths; and os.makedirs() |
| 1069 | |
| 1070 | Recursive directory creation function. Like :func:`mkdir`, but makes all |
| 1071 | intermediate-level directories needed to contain the leaf directory. Throws an |
| 1072 | :exc:`error` exception if the leaf directory already exists or cannot be |
| 1073 | created. The default *mode* is ``0777`` (octal). On some systems, *mode* is |
| 1074 | ignored. Where it is used, the current umask value is first masked out. |
| 1075 | |
| 1076 | .. note:: |
| 1077 | |
| 1078 | :func:`makedirs` will become confused if the path elements to create include |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1079 | :data:`os.pardir`. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1080 | |
| 1081 | .. versionadded:: 1.5.2 |
| 1082 | |
| 1083 | .. versionchanged:: 2.3 |
| 1084 | This function now handles UNC paths correctly. |
| 1085 | |
| 1086 | |
| 1087 | .. function:: pathconf(path, name) |
| 1088 | |
| 1089 | Return system configuration information relevant to a named file. *name* |
| 1090 | specifies the configuration value to retrieve; it may be a string which is the |
| 1091 | name of a defined system value; these names are specified in a number of |
| 1092 | standards (POSIX.1, Unix 95, Unix 98, and others). Some platforms define |
| 1093 | additional names as well. The names known to the host operating system are |
| 1094 | given in the ``pathconf_names`` dictionary. For configuration variables not |
| 1095 | included in that mapping, passing an integer for *name* is also accepted. |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1096 | Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1097 | |
| 1098 | If *name* is a string and is not known, :exc:`ValueError` is raised. If a |
| 1099 | specific value for *name* is not supported by the host system, even if it is |
| 1100 | included in ``pathconf_names``, an :exc:`OSError` is raised with |
| 1101 | :const:`errno.EINVAL` for the error number. |
| 1102 | |
| 1103 | |
| 1104 | .. data:: pathconf_names |
| 1105 | |
| 1106 | Dictionary mapping names accepted by :func:`pathconf` and :func:`fpathconf` to |
| 1107 | the integer values defined for those names by the host operating system. This |
| 1108 | can be used to determine the set of names known to the system. Availability: |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1109 | Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1110 | |
| 1111 | |
| 1112 | .. function:: readlink(path) |
| 1113 | |
| 1114 | Return a string representing the path to which the symbolic link points. The |
| 1115 | result may be either an absolute or relative pathname; if it is relative, it may |
| 1116 | be converted to an absolute pathname using ``os.path.join(os.path.dirname(path), |
| 1117 | result)``. |
| 1118 | |
| 1119 | .. versionchanged:: 2.6 |
| 1120 | If the *path* is a Unicode object the result will also be a Unicode object. |
| 1121 | |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1122 | Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1123 | |
| 1124 | |
| 1125 | .. function:: remove(path) |
| 1126 | |
Georg Brandl | 7543997 | 2009-08-24 17:24:27 +0000 | [diff] [blame] | 1127 | Remove (delete) the file *path*. If *path* is a directory, :exc:`OSError` is |
| 1128 | raised; see :func:`rmdir` below to remove a directory. This is identical to |
| 1129 | the :func:`unlink` function documented below. On Windows, attempting to |
| 1130 | remove a file that is in use causes an exception to be raised; on Unix, the |
| 1131 | directory entry is removed but the storage allocated to the file is not made |
| 1132 | available until the original file is no longer in use. Availability: Unix, |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1133 | Windows. |
| 1134 | |
| 1135 | |
| 1136 | .. function:: removedirs(path) |
| 1137 | |
| 1138 | .. index:: single: directory; deleting |
| 1139 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1140 | Remove directories recursively. Works like :func:`rmdir` except that, if the |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1141 | leaf directory is successfully removed, :func:`removedirs` tries to |
| 1142 | successively remove every parent directory mentioned in *path* until an error |
| 1143 | is raised (which is ignored, because it generally means that a parent directory |
| 1144 | is not empty). For example, ``os.removedirs('foo/bar/baz')`` will first remove |
| 1145 | the directory ``'foo/bar/baz'``, and then remove ``'foo/bar'`` and ``'foo'`` if |
| 1146 | they are empty. Raises :exc:`OSError` if the leaf directory could not be |
| 1147 | successfully removed. |
| 1148 | |
| 1149 | .. versionadded:: 1.5.2 |
| 1150 | |
| 1151 | |
| 1152 | .. function:: rename(src, dst) |
| 1153 | |
| 1154 | Rename the file or directory *src* to *dst*. If *dst* is a directory, |
| 1155 | :exc:`OSError` will be raised. On Unix, if *dst* exists and is a file, it will |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1156 | be replaced silently if the user has permission. The operation may fail on some |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1157 | Unix flavors if *src* and *dst* are on different filesystems. If successful, |
| 1158 | the renaming will be an atomic operation (this is a POSIX requirement). On |
| 1159 | Windows, if *dst* already exists, :exc:`OSError` will be raised even if it is a |
| 1160 | file; there may be no way to implement an atomic rename when *dst* names an |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1161 | existing file. Availability: Unix, Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1162 | |
| 1163 | |
| 1164 | .. function:: renames(old, new) |
| 1165 | |
| 1166 | Recursive directory or file renaming function. Works like :func:`rename`, except |
| 1167 | creation of any intermediate directories needed to make the new pathname good is |
| 1168 | attempted first. After the rename, directories corresponding to rightmost path |
| 1169 | segments of the old name will be pruned away using :func:`removedirs`. |
| 1170 | |
| 1171 | .. versionadded:: 1.5.2 |
| 1172 | |
| 1173 | .. note:: |
| 1174 | |
| 1175 | This function can fail with the new directory structure made if you lack |
| 1176 | permissions needed to remove the leaf directory or file. |
| 1177 | |
| 1178 | |
| 1179 | .. function:: rmdir(path) |
| 1180 | |
Georg Brandl | 1b2695a | 2009-08-24 17:48:40 +0000 | [diff] [blame] | 1181 | Remove (delete) the directory *path*. Only works when the directory is |
| 1182 | empty, otherwise, :exc:`OSError` is raised. In order to remove whole |
| 1183 | directory trees, :func:`shutil.rmtree` can be used. Availability: Unix, |
| 1184 | Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1185 | |
| 1186 | |
| 1187 | .. function:: stat(path) |
| 1188 | |
| 1189 | Perform a :cfunc:`stat` system call on the given path. The return value is an |
| 1190 | object whose attributes correspond to the members of the :ctype:`stat` |
| 1191 | structure, namely: :attr:`st_mode` (protection bits), :attr:`st_ino` (inode |
| 1192 | number), :attr:`st_dev` (device), :attr:`st_nlink` (number of hard links), |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1193 | :attr:`st_uid` (user id of owner), :attr:`st_gid` (group id of owner), |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1194 | :attr:`st_size` (size of file, in bytes), :attr:`st_atime` (time of most recent |
| 1195 | access), :attr:`st_mtime` (time of most recent content modification), |
| 1196 | :attr:`st_ctime` (platform dependent; time of most recent metadata change on |
| 1197 | Unix, or the time of creation on Windows):: |
| 1198 | |
| 1199 | >>> import os |
| 1200 | >>> statinfo = os.stat('somefile.txt') |
| 1201 | >>> statinfo |
| 1202 | (33188, 422511L, 769L, 1, 1032, 100, 926L, 1105022698,1105022732, 1105022732) |
| 1203 | >>> statinfo.st_size |
| 1204 | 926L |
| 1205 | >>> |
| 1206 | |
| 1207 | .. versionchanged:: 2.3 |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1208 | If :func:`stat_float_times` returns ``True``, the time values are floats, measuring |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1209 | seconds. Fractions of a second may be reported if the system supports that. On |
| 1210 | Mac OS, the times are always floats. See :func:`stat_float_times` for further |
| 1211 | discussion. |
| 1212 | |
| 1213 | On some Unix systems (such as Linux), the following attributes may also be |
| 1214 | available: :attr:`st_blocks` (number of blocks allocated for file), |
| 1215 | :attr:`st_blksize` (filesystem blocksize), :attr:`st_rdev` (type of device if an |
| 1216 | inode device). :attr:`st_flags` (user defined flags for file). |
| 1217 | |
| 1218 | On other Unix systems (such as FreeBSD), the following attributes may be |
| 1219 | available (but may be only filled out if root tries to use them): :attr:`st_gen` |
| 1220 | (file generation number), :attr:`st_birthtime` (time of file creation). |
| 1221 | |
| 1222 | On Mac OS systems, the following attributes may also be available: |
| 1223 | :attr:`st_rsize`, :attr:`st_creator`, :attr:`st_type`. |
| 1224 | |
| 1225 | On RISCOS systems, the following attributes are also available: :attr:`st_ftype` |
| 1226 | (file type), :attr:`st_attrs` (attributes), :attr:`st_obtype` (object type). |
| 1227 | |
| 1228 | .. index:: module: stat |
| 1229 | |
| 1230 | For backward compatibility, the return value of :func:`stat` is also accessible |
| 1231 | as a tuple of at least 10 integers giving the most important (and portable) |
| 1232 | members of the :ctype:`stat` structure, in the order :attr:`st_mode`, |
| 1233 | :attr:`st_ino`, :attr:`st_dev`, :attr:`st_nlink`, :attr:`st_uid`, |
| 1234 | :attr:`st_gid`, :attr:`st_size`, :attr:`st_atime`, :attr:`st_mtime`, |
| 1235 | :attr:`st_ctime`. More items may be added at the end by some implementations. |
| 1236 | The standard module :mod:`stat` defines functions and constants that are useful |
| 1237 | for extracting information from a :ctype:`stat` structure. (On Windows, some |
| 1238 | items are filled with dummy values.) |
| 1239 | |
| 1240 | .. note:: |
| 1241 | |
| 1242 | The exact meaning and resolution of the :attr:`st_atime`, :attr:`st_mtime`, and |
| 1243 | :attr:`st_ctime` members depends on the operating system and the file system. |
| 1244 | For example, on Windows systems using the FAT or FAT32 file systems, |
| 1245 | :attr:`st_mtime` has 2-second resolution, and :attr:`st_atime` has only 1-day |
| 1246 | resolution. See your operating system documentation for details. |
| 1247 | |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1248 | Availability: Unix, Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1249 | |
| 1250 | .. versionchanged:: 2.2 |
| 1251 | Added access to values as attributes of the returned object. |
| 1252 | |
| 1253 | .. versionchanged:: 2.5 |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1254 | Added :attr:`st_gen` and :attr:`st_birthtime`. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1255 | |
| 1256 | |
| 1257 | .. function:: stat_float_times([newvalue]) |
| 1258 | |
| 1259 | Determine whether :class:`stat_result` represents time stamps as float objects. |
| 1260 | If *newvalue* is ``True``, future calls to :func:`stat` return floats, if it is |
| 1261 | ``False``, future calls return ints. If *newvalue* is omitted, return the |
| 1262 | current setting. |
| 1263 | |
| 1264 | For compatibility with older Python versions, accessing :class:`stat_result` as |
| 1265 | a tuple always returns integers. |
| 1266 | |
| 1267 | .. versionchanged:: 2.5 |
| 1268 | Python now returns float values by default. Applications which do not work |
| 1269 | correctly with floating point time stamps can use this function to restore the |
| 1270 | old behaviour. |
| 1271 | |
| 1272 | The resolution of the timestamps (that is the smallest possible fraction) |
| 1273 | depends on the system. Some systems only support second resolution; on these |
| 1274 | systems, the fraction will always be zero. |
| 1275 | |
| 1276 | It is recommended that this setting is only changed at program startup time in |
| 1277 | the *__main__* module; libraries should never change this setting. If an |
| 1278 | application uses a library that works incorrectly if floating point time stamps |
| 1279 | are processed, this application should turn the feature off until the library |
| 1280 | has been corrected. |
| 1281 | |
| 1282 | |
| 1283 | .. function:: statvfs(path) |
| 1284 | |
| 1285 | Perform a :cfunc:`statvfs` system call on the given path. The return value is |
| 1286 | an object whose attributes describe the filesystem on the given path, and |
| 1287 | correspond to the members of the :ctype:`statvfs` structure, namely: |
| 1288 | :attr:`f_bsize`, :attr:`f_frsize`, :attr:`f_blocks`, :attr:`f_bfree`, |
| 1289 | :attr:`f_bavail`, :attr:`f_files`, :attr:`f_ffree`, :attr:`f_favail`, |
| 1290 | :attr:`f_flag`, :attr:`f_namemax`. Availability: Unix. |
| 1291 | |
| 1292 | .. index:: module: statvfs |
| 1293 | |
| 1294 | For backward compatibility, the return value is also accessible as a tuple whose |
| 1295 | values correspond to the attributes, in the order given above. The standard |
| 1296 | module :mod:`statvfs` defines constants that are useful for extracting |
| 1297 | information from a :ctype:`statvfs` structure when accessing it as a sequence; |
| 1298 | this remains useful when writing code that needs to work with versions of Python |
| 1299 | that don't support accessing the fields as attributes. |
| 1300 | |
| 1301 | .. versionchanged:: 2.2 |
| 1302 | Added access to values as attributes of the returned object. |
| 1303 | |
| 1304 | |
Benjamin Peterson | 0e92858 | 2009-03-28 19:16:10 +0000 | [diff] [blame] | 1305 | .. function:: symlink(source, link_name) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1306 | |
Benjamin Peterson | 0e92858 | 2009-03-28 19:16:10 +0000 | [diff] [blame] | 1307 | Create a symbolic link pointing to *source* named *link_name*. Availability: |
| 1308 | Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1309 | |
| 1310 | |
| 1311 | .. function:: tempnam([dir[, prefix]]) |
| 1312 | |
| 1313 | Return a unique path name that is reasonable for creating a temporary file. |
| 1314 | This will be an absolute path that names a potential directory entry in the |
| 1315 | directory *dir* or a common location for temporary files if *dir* is omitted or |
| 1316 | ``None``. If given and not ``None``, *prefix* is used to provide a short prefix |
| 1317 | to the filename. Applications are responsible for properly creating and |
| 1318 | managing files created using paths returned by :func:`tempnam`; no automatic |
| 1319 | cleanup is provided. On Unix, the environment variable :envvar:`TMPDIR` |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1320 | overrides *dir*, while on Windows :envvar:`TMP` is used. The specific |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1321 | behavior of this function depends on the C library implementation; some aspects |
| 1322 | are underspecified in system documentation. |
| 1323 | |
| 1324 | .. warning:: |
| 1325 | |
| 1326 | Use of :func:`tempnam` is vulnerable to symlink attacks; consider using |
| 1327 | :func:`tmpfile` (section :ref:`os-newstreams`) instead. |
| 1328 | |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1329 | Availability: Unix, Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1330 | |
| 1331 | |
| 1332 | .. function:: tmpnam() |
| 1333 | |
| 1334 | Return a unique path name that is reasonable for creating a temporary file. |
| 1335 | This will be an absolute path that names a potential directory entry in a common |
| 1336 | location for temporary files. Applications are responsible for properly |
| 1337 | creating and managing files created using paths returned by :func:`tmpnam`; no |
| 1338 | automatic cleanup is provided. |
| 1339 | |
| 1340 | .. warning:: |
| 1341 | |
| 1342 | Use of :func:`tmpnam` is vulnerable to symlink attacks; consider using |
| 1343 | :func:`tmpfile` (section :ref:`os-newstreams`) instead. |
| 1344 | |
| 1345 | Availability: Unix, Windows. This function probably shouldn't be used on |
| 1346 | Windows, though: Microsoft's implementation of :func:`tmpnam` always creates a |
| 1347 | name in the root directory of the current drive, and that's generally a poor |
| 1348 | location for a temp file (depending on privileges, you may not even be able to |
| 1349 | open a file using this name). |
| 1350 | |
| 1351 | |
| 1352 | .. data:: TMP_MAX |
| 1353 | |
| 1354 | The maximum number of unique names that :func:`tmpnam` will generate before |
| 1355 | reusing names. |
| 1356 | |
| 1357 | |
| 1358 | .. function:: unlink(path) |
| 1359 | |
Georg Brandl | 7543997 | 2009-08-24 17:24:27 +0000 | [diff] [blame] | 1360 | Remove (delete) the file *path*. This is the same function as |
| 1361 | :func:`remove`; the :func:`unlink` name is its traditional Unix |
| 1362 | name. Availability: Unix, Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1363 | |
| 1364 | |
| 1365 | .. function:: utime(path, times) |
| 1366 | |
Benjamin Peterson | 5b02ef3 | 2008-08-16 03:13:07 +0000 | [diff] [blame] | 1367 | Set the access and modified times of the file specified by *path*. If *times* |
| 1368 | is ``None``, then the file's access and modified times are set to the current |
| 1369 | time. (The effect is similar to running the Unix program :program:`touch` on |
| 1370 | the path.) Otherwise, *times* must be a 2-tuple of numbers, of the form |
| 1371 | ``(atime, mtime)`` which is used to set the access and modified times, |
| 1372 | respectively. Whether a directory can be given for *path* depends on whether |
| 1373 | the operating system implements directories as files (for example, Windows |
| 1374 | does not). Note that the exact times you set here may not be returned by a |
| 1375 | subsequent :func:`stat` call, depending on the resolution with which your |
| 1376 | operating system records access and modification times; see :func:`stat`. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1377 | |
| 1378 | .. versionchanged:: 2.0 |
| 1379 | Added support for ``None`` for *times*. |
| 1380 | |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1381 | Availability: Unix, Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1382 | |
| 1383 | |
| 1384 | .. function:: walk(top[, topdown=True [, onerror=None[, followlinks=False]]]) |
| 1385 | |
| 1386 | .. index:: |
| 1387 | single: directory; walking |
| 1388 | single: directory; traversal |
| 1389 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1390 | Generate the file names in a directory tree by walking the tree |
| 1391 | either top-down or bottom-up. For each directory in the tree rooted at directory |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1392 | *top* (including *top* itself), it yields a 3-tuple ``(dirpath, dirnames, |
| 1393 | filenames)``. |
| 1394 | |
| 1395 | *dirpath* is a string, the path to the directory. *dirnames* is a list of the |
| 1396 | names of the subdirectories in *dirpath* (excluding ``'.'`` and ``'..'``). |
| 1397 | *filenames* is a list of the names of the non-directory files in *dirpath*. |
| 1398 | Note that the names in the lists contain no path components. To get a full path |
| 1399 | (which begins with *top*) to a file or directory in *dirpath*, do |
| 1400 | ``os.path.join(dirpath, name)``. |
| 1401 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1402 | If optional argument *topdown* is ``True`` or not specified, the triple for a |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1403 | directory is generated before the triples for any of its subdirectories |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1404 | (directories are generated top-down). If *topdown* is ``False``, the triple for a |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1405 | directory is generated after the triples for all of its subdirectories |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1406 | (directories are generated bottom-up). |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1407 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1408 | When *topdown* is ``True``, the caller can modify the *dirnames* list in-place |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1409 | (perhaps using :keyword:`del` or slice assignment), and :func:`walk` will only |
| 1410 | recurse into the subdirectories whose names remain in *dirnames*; this can be |
| 1411 | used to prune the search, impose a specific order of visiting, or even to inform |
| 1412 | :func:`walk` about directories the caller creates or renames before it resumes |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1413 | :func:`walk` again. Modifying *dirnames* when *topdown* is ``False`` is |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1414 | ineffective, because in bottom-up mode the directories in *dirnames* are |
| 1415 | generated before *dirpath* itself is generated. |
| 1416 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1417 | By default errors from the :func:`listdir` call are ignored. If optional |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1418 | argument *onerror* is specified, it should be a function; it will be called with |
| 1419 | one argument, an :exc:`OSError` instance. It can report the error to continue |
| 1420 | with the walk, or raise the exception to abort the walk. Note that the filename |
| 1421 | is available as the ``filename`` attribute of the exception object. |
| 1422 | |
| 1423 | By default, :func:`walk` will not walk down into symbolic links that resolve to |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1424 | directories. Set *followlinks* to ``True`` to visit directories pointed to by |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1425 | symlinks, on systems that support them. |
| 1426 | |
| 1427 | .. versionadded:: 2.6 |
| 1428 | The *followlinks* parameter. |
| 1429 | |
| 1430 | .. note:: |
| 1431 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1432 | Be aware that setting *followlinks* to ``True`` can lead to infinite recursion if a |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1433 | link points to a parent directory of itself. :func:`walk` does not keep track of |
| 1434 | the directories it visited already. |
| 1435 | |
| 1436 | .. note:: |
| 1437 | |
| 1438 | If you pass a relative pathname, don't change the current working directory |
| 1439 | between resumptions of :func:`walk`. :func:`walk` never changes the current |
| 1440 | directory, and assumes that its caller doesn't either. |
| 1441 | |
| 1442 | This example displays the number of bytes taken by non-directory files in each |
| 1443 | directory under the starting directory, except that it doesn't look under any |
| 1444 | CVS subdirectory:: |
| 1445 | |
| 1446 | import os |
| 1447 | from os.path import join, getsize |
| 1448 | for root, dirs, files in os.walk('python/Lib/email'): |
| 1449 | print root, "consumes", |
| 1450 | print sum(getsize(join(root, name)) for name in files), |
| 1451 | print "bytes in", len(files), "non-directory files" |
| 1452 | if 'CVS' in dirs: |
| 1453 | dirs.remove('CVS') # don't visit CVS directories |
| 1454 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1455 | In the next example, walking the tree bottom-up is essential: :func:`rmdir` |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1456 | doesn't allow deleting a directory before the directory is empty:: |
| 1457 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1458 | # Delete everything reachable from the directory named in "top", |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1459 | # assuming there are no symbolic links. |
| 1460 | # CAUTION: This is dangerous! For example, if top == '/', it |
| 1461 | # could delete all your disk files. |
| 1462 | import os |
| 1463 | for root, dirs, files in os.walk(top, topdown=False): |
| 1464 | for name in files: |
| 1465 | os.remove(os.path.join(root, name)) |
| 1466 | for name in dirs: |
| 1467 | os.rmdir(os.path.join(root, name)) |
| 1468 | |
| 1469 | .. versionadded:: 2.3 |
| 1470 | |
| 1471 | |
| 1472 | .. _os-process: |
| 1473 | |
| 1474 | Process Management |
| 1475 | ------------------ |
| 1476 | |
| 1477 | These functions may be used to create and manage processes. |
| 1478 | |
| 1479 | The various :func:`exec\*` functions take a list of arguments for the new |
| 1480 | program loaded into the process. In each case, the first of these arguments is |
| 1481 | passed to the new program as its own name rather than as an argument a user may |
| 1482 | have typed on a command line. For the C programmer, this is the ``argv[0]`` |
| 1483 | passed to a program's :cfunc:`main`. For example, ``os.execv('/bin/echo', |
| 1484 | ['foo', 'bar'])`` will only print ``bar`` on standard output; ``foo`` will seem |
| 1485 | to be ignored. |
| 1486 | |
| 1487 | |
| 1488 | .. function:: abort() |
| 1489 | |
| 1490 | Generate a :const:`SIGABRT` signal to the current process. On Unix, the default |
| 1491 | behavior is to produce a core dump; on Windows, the process immediately returns |
| 1492 | an exit code of ``3``. Be aware that programs which use :func:`signal.signal` |
| 1493 | to register a handler for :const:`SIGABRT` will behave differently. |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1494 | Availability: Unix, Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1495 | |
| 1496 | |
| 1497 | .. function:: execl(path, arg0, arg1, ...) |
| 1498 | execle(path, arg0, arg1, ..., env) |
| 1499 | execlp(file, arg0, arg1, ...) |
| 1500 | execlpe(file, arg0, arg1, ..., env) |
| 1501 | execv(path, args) |
| 1502 | execve(path, args, env) |
| 1503 | execvp(file, args) |
| 1504 | execvpe(file, args, env) |
| 1505 | |
| 1506 | These functions all execute a new program, replacing the current process; they |
| 1507 | do not return. On Unix, the new executable is loaded into the current process, |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1508 | and will have the same process id as the caller. Errors will be reported as |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 1509 | :exc:`OSError` exceptions. |
Andrew M. Kuchling | ac77166 | 2008-09-28 00:15:27 +0000 | [diff] [blame] | 1510 | |
| 1511 | The current process is replaced immediately. Open file objects and |
| 1512 | descriptors are not flushed, so if there may be data buffered |
| 1513 | on these open files, you should flush them using |
| 1514 | :func:`sys.stdout.flush` or :func:`os.fsync` before calling an |
| 1515 | :func:`exec\*` function. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1516 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1517 | The "l" and "v" variants of the :func:`exec\*` functions differ in how |
| 1518 | command-line arguments are passed. The "l" variants are perhaps the easiest |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1519 | to work with if the number of parameters is fixed when the code is written; the |
| 1520 | individual parameters simply become additional parameters to the :func:`execl\*` |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1521 | functions. The "v" variants are good when the number of parameters is |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1522 | variable, with the arguments being passed in a list or tuple as the *args* |
| 1523 | parameter. In either case, the arguments to the child process should start with |
| 1524 | the name of the command being run, but this is not enforced. |
| 1525 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1526 | The variants which include a "p" near the end (:func:`execlp`, |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1527 | :func:`execlpe`, :func:`execvp`, and :func:`execvpe`) will use the |
| 1528 | :envvar:`PATH` environment variable to locate the program *file*. When the |
| 1529 | environment is being replaced (using one of the :func:`exec\*e` variants, |
| 1530 | discussed in the next paragraph), the new environment is used as the source of |
| 1531 | the :envvar:`PATH` variable. The other variants, :func:`execl`, :func:`execle`, |
| 1532 | :func:`execv`, and :func:`execve`, will not use the :envvar:`PATH` variable to |
| 1533 | locate the executable; *path* must contain an appropriate absolute or relative |
| 1534 | path. |
| 1535 | |
| 1536 | For :func:`execle`, :func:`execlpe`, :func:`execve`, and :func:`execvpe` (note |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1537 | that these all end in "e"), the *env* parameter must be a mapping which is |
Georg Brandl | fb246c4 | 2008-04-19 16:58:28 +0000 | [diff] [blame] | 1538 | used to define the environment variables for the new process (these are used |
| 1539 | instead of the current process' environment); the functions :func:`execl`, |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1540 | :func:`execlp`, :func:`execv`, and :func:`execvp` all cause the new process to |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 1541 | inherit the environment of the current process. |
Andrew M. Kuchling | ac77166 | 2008-09-28 00:15:27 +0000 | [diff] [blame] | 1542 | |
| 1543 | Availability: Unix, Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1544 | |
| 1545 | |
| 1546 | .. function:: _exit(n) |
| 1547 | |
| 1548 | Exit to the system with status *n*, without calling cleanup handlers, flushing |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1549 | stdio buffers, etc. Availability: Unix, Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1550 | |
| 1551 | .. note:: |
| 1552 | |
| 1553 | The standard way to exit is ``sys.exit(n)``. :func:`_exit` should normally only |
| 1554 | be used in the child process after a :func:`fork`. |
| 1555 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1556 | The following exit codes are defined and can be used with :func:`_exit`, |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1557 | although they are not required. These are typically used for system programs |
| 1558 | written in Python, such as a mail server's external command delivery program. |
| 1559 | |
| 1560 | .. note:: |
| 1561 | |
| 1562 | Some of these may not be available on all Unix platforms, since there is some |
| 1563 | variation. These constants are defined where they are defined by the underlying |
| 1564 | platform. |
| 1565 | |
| 1566 | |
| 1567 | .. data:: EX_OK |
| 1568 | |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1569 | Exit code that means no error occurred. Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1570 | |
| 1571 | .. versionadded:: 2.3 |
| 1572 | |
| 1573 | |
| 1574 | .. data:: EX_USAGE |
| 1575 | |
| 1576 | Exit code that means the command was used incorrectly, such as when the wrong |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1577 | number of arguments are given. Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1578 | |
| 1579 | .. versionadded:: 2.3 |
| 1580 | |
| 1581 | |
| 1582 | .. data:: EX_DATAERR |
| 1583 | |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1584 | Exit code that means the input data was incorrect. Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1585 | |
| 1586 | .. versionadded:: 2.3 |
| 1587 | |
| 1588 | |
| 1589 | .. data:: EX_NOINPUT |
| 1590 | |
| 1591 | Exit code that means an input file did not exist or was not readable. |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1592 | Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1593 | |
| 1594 | .. versionadded:: 2.3 |
| 1595 | |
| 1596 | |
| 1597 | .. data:: EX_NOUSER |
| 1598 | |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1599 | Exit code that means a specified user did not exist. Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1600 | |
| 1601 | .. versionadded:: 2.3 |
| 1602 | |
| 1603 | |
| 1604 | .. data:: EX_NOHOST |
| 1605 | |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1606 | Exit code that means a specified host did not exist. Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1607 | |
| 1608 | .. versionadded:: 2.3 |
| 1609 | |
| 1610 | |
| 1611 | .. data:: EX_UNAVAILABLE |
| 1612 | |
| 1613 | Exit code that means that a required service is unavailable. Availability: |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1614 | Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1615 | |
| 1616 | .. versionadded:: 2.3 |
| 1617 | |
| 1618 | |
| 1619 | .. data:: EX_SOFTWARE |
| 1620 | |
| 1621 | Exit code that means an internal software error was detected. Availability: |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1622 | Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1623 | |
| 1624 | .. versionadded:: 2.3 |
| 1625 | |
| 1626 | |
| 1627 | .. data:: EX_OSERR |
| 1628 | |
| 1629 | Exit code that means an operating system error was detected, such as the |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1630 | inability to fork or create a pipe. Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1631 | |
| 1632 | .. versionadded:: 2.3 |
| 1633 | |
| 1634 | |
| 1635 | .. data:: EX_OSFILE |
| 1636 | |
| 1637 | Exit code that means some system file did not exist, could not be opened, or had |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1638 | some other kind of error. Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1639 | |
| 1640 | .. versionadded:: 2.3 |
| 1641 | |
| 1642 | |
| 1643 | .. data:: EX_CANTCREAT |
| 1644 | |
| 1645 | Exit code that means a user specified output file could not be created. |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1646 | Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1647 | |
| 1648 | .. versionadded:: 2.3 |
| 1649 | |
| 1650 | |
| 1651 | .. data:: EX_IOERR |
| 1652 | |
| 1653 | Exit code that means that an error occurred while doing I/O on some file. |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1654 | Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1655 | |
| 1656 | .. versionadded:: 2.3 |
| 1657 | |
| 1658 | |
| 1659 | .. data:: EX_TEMPFAIL |
| 1660 | |
| 1661 | Exit code that means a temporary failure occurred. This indicates something |
| 1662 | that may not really be an error, such as a network connection that couldn't be |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1663 | made during a retryable operation. Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1664 | |
| 1665 | .. versionadded:: 2.3 |
| 1666 | |
| 1667 | |
| 1668 | .. data:: EX_PROTOCOL |
| 1669 | |
| 1670 | Exit code that means that a protocol exchange was illegal, invalid, or not |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1671 | understood. Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1672 | |
| 1673 | .. versionadded:: 2.3 |
| 1674 | |
| 1675 | |
| 1676 | .. data:: EX_NOPERM |
| 1677 | |
| 1678 | Exit code that means that there were insufficient permissions to perform the |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1679 | operation (but not intended for file system problems). Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1680 | |
| 1681 | .. versionadded:: 2.3 |
| 1682 | |
| 1683 | |
| 1684 | .. data:: EX_CONFIG |
| 1685 | |
| 1686 | Exit code that means that some kind of configuration error occurred. |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1687 | Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1688 | |
| 1689 | .. versionadded:: 2.3 |
| 1690 | |
| 1691 | |
| 1692 | .. data:: EX_NOTFOUND |
| 1693 | |
| 1694 | Exit code that means something like "an entry was not found". Availability: |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1695 | Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1696 | |
| 1697 | .. versionadded:: 2.3 |
| 1698 | |
| 1699 | |
| 1700 | .. function:: fork() |
| 1701 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1702 | Fork a child process. Return ``0`` in the child and the child's process id in the |
Skip Montanaro | 75e5168 | 2008-03-15 02:32:49 +0000 | [diff] [blame] | 1703 | parent. If an error occurs :exc:`OSError` is raised. |
Gregory P. Smith | 0806749 | 2008-09-30 20:41:13 +0000 | [diff] [blame] | 1704 | |
| 1705 | Note that some platforms including FreeBSD <= 6.3, Cygwin and OS/2 EMX have |
| 1706 | known issues when using fork() from a thread. |
| 1707 | |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1708 | Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1709 | |
| 1710 | |
| 1711 | .. function:: forkpty() |
| 1712 | |
| 1713 | Fork a child process, using a new pseudo-terminal as the child's controlling |
| 1714 | terminal. Return a pair of ``(pid, fd)``, where *pid* is ``0`` in the child, the |
| 1715 | new child's process id in the parent, and *fd* is the file descriptor of the |
| 1716 | master end of the pseudo-terminal. For a more portable approach, use the |
Skip Montanaro | 75e5168 | 2008-03-15 02:32:49 +0000 | [diff] [blame] | 1717 | :mod:`pty` module. If an error occurs :exc:`OSError` is raised. |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1718 | Availability: some flavors of Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1719 | |
| 1720 | |
| 1721 | .. function:: kill(pid, sig) |
| 1722 | |
| 1723 | .. index:: |
| 1724 | single: process; killing |
| 1725 | single: process; signalling |
| 1726 | |
| 1727 | Send signal *sig* to the process *pid*. Constants for the specific signals |
| 1728 | available on the host platform are defined in the :mod:`signal` module. |
Brian Curtin | e5aa886 | 2010-04-02 23:26:06 +0000 | [diff] [blame] | 1729 | |
| 1730 | Windows: The :data:`signal.CTRL_C_EVENT` and |
| 1731 | :data:`signal.CTRL_BREAK_EVENT` signals are special signals which can |
| 1732 | only be sent to console processes which share a common console window, |
| 1733 | e.g., some subprocesses. Any other value for *sig* will cause the process |
| 1734 | to be unconditionally killed by the TerminateProcess API, and the exit code |
| 1735 | will be set to *sig*. The Windows version of :func:`kill` additionally takes |
| 1736 | process handles to be killed. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1737 | |
| 1738 | |
| 1739 | .. function:: killpg(pgid, sig) |
| 1740 | |
| 1741 | .. index:: |
| 1742 | single: process; killing |
| 1743 | single: process; signalling |
| 1744 | |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1745 | Send the signal *sig* to the process group *pgid*. Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1746 | |
| 1747 | .. versionadded:: 2.3 |
| 1748 | |
| 1749 | |
| 1750 | .. function:: nice(increment) |
| 1751 | |
| 1752 | Add *increment* to the process's "niceness". Return the new niceness. |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1753 | Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1754 | |
| 1755 | |
| 1756 | .. function:: plock(op) |
| 1757 | |
| 1758 | Lock program segments into memory. The value of *op* (defined in |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1759 | ``<sys/lock.h>``) determines which segments are locked. Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1760 | |
| 1761 | |
| 1762 | .. function:: popen(...) |
| 1763 | popen2(...) |
| 1764 | popen3(...) |
| 1765 | popen4(...) |
| 1766 | :noindex: |
| 1767 | |
| 1768 | Run child processes, returning opened pipes for communications. These functions |
| 1769 | are described in section :ref:`os-newstreams`. |
| 1770 | |
| 1771 | |
| 1772 | .. function:: spawnl(mode, path, ...) |
| 1773 | spawnle(mode, path, ..., env) |
| 1774 | spawnlp(mode, file, ...) |
| 1775 | spawnlpe(mode, file, ..., env) |
| 1776 | spawnv(mode, path, args) |
| 1777 | spawnve(mode, path, args, env) |
| 1778 | spawnvp(mode, file, args) |
| 1779 | spawnvpe(mode, file, args, env) |
| 1780 | |
| 1781 | Execute the program *path* in a new process. |
| 1782 | |
| 1783 | (Note that the :mod:`subprocess` module provides more powerful facilities for |
| 1784 | spawning new processes and retrieving their results; using that module is |
R. David Murray | ccb9d4b | 2009-06-09 00:44:22 +0000 | [diff] [blame] | 1785 | preferable to using these functions. Check especially the |
| 1786 | :ref:`subprocess-replacements` section.) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1787 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1788 | If *mode* is :const:`P_NOWAIT`, this function returns the process id of the new |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1789 | process; if *mode* is :const:`P_WAIT`, returns the process's exit code if it |
| 1790 | exits normally, or ``-signal``, where *signal* is the signal that killed the |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1791 | process. On Windows, the process id will actually be the process handle, so can |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1792 | be used with the :func:`waitpid` function. |
| 1793 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1794 | The "l" and "v" variants of the :func:`spawn\*` functions differ in how |
| 1795 | command-line arguments are passed. The "l" variants are perhaps the easiest |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1796 | to work with if the number of parameters is fixed when the code is written; the |
| 1797 | individual parameters simply become additional parameters to the |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1798 | :func:`spawnl\*` functions. The "v" variants are good when the number of |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1799 | parameters is variable, with the arguments being passed in a list or tuple as |
| 1800 | the *args* parameter. In either case, the arguments to the child process must |
| 1801 | start with the name of the command being run. |
| 1802 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1803 | The variants which include a second "p" near the end (:func:`spawnlp`, |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1804 | :func:`spawnlpe`, :func:`spawnvp`, and :func:`spawnvpe`) will use the |
| 1805 | :envvar:`PATH` environment variable to locate the program *file*. When the |
| 1806 | environment is being replaced (using one of the :func:`spawn\*e` variants, |
| 1807 | discussed in the next paragraph), the new environment is used as the source of |
| 1808 | the :envvar:`PATH` variable. The other variants, :func:`spawnl`, |
| 1809 | :func:`spawnle`, :func:`spawnv`, and :func:`spawnve`, will not use the |
| 1810 | :envvar:`PATH` variable to locate the executable; *path* must contain an |
| 1811 | appropriate absolute or relative path. |
| 1812 | |
| 1813 | For :func:`spawnle`, :func:`spawnlpe`, :func:`spawnve`, and :func:`spawnvpe` |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1814 | (note that these all end in "e"), the *env* parameter must be a mapping |
Georg Brandl | fb246c4 | 2008-04-19 16:58:28 +0000 | [diff] [blame] | 1815 | which is used to define the environment variables for the new process (they are |
| 1816 | used instead of the current process' environment); the functions |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1817 | :func:`spawnl`, :func:`spawnlp`, :func:`spawnv`, and :func:`spawnvp` all cause |
Georg Brandl | 22717df | 2009-03-31 18:26:55 +0000 | [diff] [blame] | 1818 | the new process to inherit the environment of the current process. Note that |
| 1819 | keys and values in the *env* dictionary must be strings; invalid keys or |
| 1820 | values will cause the function to fail, with a return value of ``127``. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1821 | |
| 1822 | As an example, the following calls to :func:`spawnlp` and :func:`spawnvpe` are |
| 1823 | equivalent:: |
| 1824 | |
| 1825 | import os |
| 1826 | os.spawnlp(os.P_WAIT, 'cp', 'cp', 'index.html', '/dev/null') |
| 1827 | |
| 1828 | L = ['cp', 'index.html', '/dev/null'] |
| 1829 | os.spawnvpe(os.P_WAIT, 'cp', L, os.environ) |
| 1830 | |
| 1831 | Availability: Unix, Windows. :func:`spawnlp`, :func:`spawnlpe`, :func:`spawnvp` |
| 1832 | and :func:`spawnvpe` are not available on Windows. |
| 1833 | |
| 1834 | .. versionadded:: 1.6 |
| 1835 | |
| 1836 | |
| 1837 | .. data:: P_NOWAIT |
| 1838 | P_NOWAITO |
| 1839 | |
| 1840 | Possible values for the *mode* parameter to the :func:`spawn\*` family of |
| 1841 | functions. If either of these values is given, the :func:`spawn\*` functions |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 1842 | will return as soon as the new process has been created, with the process id as |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1843 | the return value. Availability: Unix, Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1844 | |
| 1845 | .. versionadded:: 1.6 |
| 1846 | |
| 1847 | |
| 1848 | .. data:: P_WAIT |
| 1849 | |
| 1850 | Possible value for the *mode* parameter to the :func:`spawn\*` family of |
| 1851 | functions. If this is given as *mode*, the :func:`spawn\*` functions will not |
| 1852 | return until the new process has run to completion and will return the exit code |
| 1853 | of the process the run is successful, or ``-signal`` if a signal kills the |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1854 | process. Availability: Unix, Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1855 | |
| 1856 | .. versionadded:: 1.6 |
| 1857 | |
| 1858 | |
| 1859 | .. data:: P_DETACH |
| 1860 | P_OVERLAY |
| 1861 | |
| 1862 | Possible values for the *mode* parameter to the :func:`spawn\*` family of |
| 1863 | functions. These are less portable than those listed above. :const:`P_DETACH` |
| 1864 | is similar to :const:`P_NOWAIT`, but the new process is detached from the |
| 1865 | console of the calling process. If :const:`P_OVERLAY` is used, the current |
| 1866 | process will be replaced; the :func:`spawn\*` function will not return. |
| 1867 | Availability: Windows. |
| 1868 | |
| 1869 | .. versionadded:: 1.6 |
| 1870 | |
| 1871 | |
| 1872 | .. function:: startfile(path[, operation]) |
| 1873 | |
| 1874 | Start a file with its associated application. |
| 1875 | |
| 1876 | When *operation* is not specified or ``'open'``, this acts like double-clicking |
| 1877 | the file in Windows Explorer, or giving the file name as an argument to the |
| 1878 | :program:`start` command from the interactive command shell: the file is opened |
| 1879 | with whatever application (if any) its extension is associated. |
| 1880 | |
| 1881 | When another *operation* is given, it must be a "command verb" that specifies |
| 1882 | what should be done with the file. Common verbs documented by Microsoft are |
| 1883 | ``'print'`` and ``'edit'`` (to be used on files) as well as ``'explore'`` and |
| 1884 | ``'find'`` (to be used on directories). |
| 1885 | |
| 1886 | :func:`startfile` returns as soon as the associated application is launched. |
| 1887 | There is no option to wait for the application to close, and no way to retrieve |
| 1888 | the application's exit status. The *path* parameter is relative to the current |
| 1889 | directory. If you want to use an absolute path, make sure the first character |
| 1890 | is not a slash (``'/'``); the underlying Win32 :cfunc:`ShellExecute` function |
| 1891 | doesn't work if it is. Use the :func:`os.path.normpath` function to ensure that |
| 1892 | the path is properly encoded for Win32. Availability: Windows. |
| 1893 | |
| 1894 | .. versionadded:: 2.0 |
| 1895 | |
| 1896 | .. versionadded:: 2.5 |
| 1897 | The *operation* parameter. |
| 1898 | |
| 1899 | |
| 1900 | .. function:: system(command) |
| 1901 | |
| 1902 | Execute the command (a string) in a subshell. This is implemented by calling |
Georg Brandl | 647e9d2 | 2009-10-14 15:57:46 +0000 | [diff] [blame] | 1903 | the Standard C function :cfunc:`system`, and has the same limitations. |
Georg Brandl | 11abfe6 | 2009-10-18 07:58:12 +0000 | [diff] [blame] | 1904 | Changes to :data:`sys.stdin`, etc. are not reflected in the environment of the |
Georg Brandl | 647e9d2 | 2009-10-14 15:57:46 +0000 | [diff] [blame] | 1905 | executed command. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1906 | |
| 1907 | On Unix, the return value is the exit status of the process encoded in the |
| 1908 | format specified for :func:`wait`. Note that POSIX does not specify the meaning |
| 1909 | of the return value of the C :cfunc:`system` function, so the return value of |
| 1910 | the Python function is system-dependent. |
| 1911 | |
| 1912 | On Windows, the return value is that returned by the system shell after running |
| 1913 | *command*, given by the Windows environment variable :envvar:`COMSPEC`: on |
| 1914 | :program:`command.com` systems (Windows 95, 98 and ME) this is always ``0``; on |
| 1915 | :program:`cmd.exe` systems (Windows NT, 2000 and XP) this is the exit status of |
| 1916 | the command run; on systems using a non-native shell, consult your shell |
| 1917 | documentation. |
| 1918 | |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1919 | Availability: Unix, Windows. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1920 | |
| 1921 | The :mod:`subprocess` module provides more powerful facilities for spawning new |
| 1922 | processes and retrieving their results; using that module is preferable to using |
Georg Brandl | 0ba92b2 | 2008-06-22 09:05:29 +0000 | [diff] [blame] | 1923 | this function. Use the :mod:`subprocess` module. Check especially the |
| 1924 | :ref:`subprocess-replacements` section. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1925 | |
| 1926 | |
| 1927 | .. function:: times() |
| 1928 | |
| 1929 | Return a 5-tuple of floating point numbers indicating accumulated (processor or |
| 1930 | other) times, in seconds. The items are: user time, system time, children's |
| 1931 | user time, children's system time, and elapsed real time since a fixed point in |
| 1932 | the past, in that order. See the Unix manual page :manpage:`times(2)` or the |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1933 | corresponding Windows Platform API documentation. Availability: Unix, |
Georg Brandl | 0a40ffb | 2008-02-13 07:20:22 +0000 | [diff] [blame] | 1934 | Windows. On Windows, only the first two items are filled, the others are zero. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1935 | |
| 1936 | |
| 1937 | .. function:: wait() |
| 1938 | |
| 1939 | Wait for completion of a child process, and return a tuple containing its pid |
| 1940 | and exit status indication: a 16-bit number, whose low byte is the signal number |
| 1941 | that killed the process, and whose high byte is the exit status (if the signal |
| 1942 | number is zero); the high bit of the low byte is set if a core file was |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 1943 | produced. Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1944 | |
| 1945 | |
| 1946 | .. function:: waitpid(pid, options) |
| 1947 | |
| 1948 | The details of this function differ on Unix and Windows. |
| 1949 | |
| 1950 | On Unix: Wait for completion of a child process given by process id *pid*, and |
| 1951 | return a tuple containing its process id and exit status indication (encoded as |
| 1952 | for :func:`wait`). The semantics of the call are affected by the value of the |
| 1953 | integer *options*, which should be ``0`` for normal operation. |
| 1954 | |
| 1955 | If *pid* is greater than ``0``, :func:`waitpid` requests status information for |
| 1956 | that specific process. If *pid* is ``0``, the request is for the status of any |
| 1957 | child in the process group of the current process. If *pid* is ``-1``, the |
| 1958 | request pertains to any child of the current process. If *pid* is less than |
| 1959 | ``-1``, status is requested for any process in the process group ``-pid`` (the |
| 1960 | absolute value of *pid*). |
| 1961 | |
Gregory P. Smith | 59de7f5 | 2008-08-15 23:14:00 +0000 | [diff] [blame] | 1962 | An :exc:`OSError` is raised with the value of errno when the syscall |
| 1963 | returns -1. |
| 1964 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1965 | On Windows: Wait for completion of a process given by process handle *pid*, and |
| 1966 | return a tuple containing *pid*, and its exit status shifted left by 8 bits |
| 1967 | (shifting makes cross-platform use of the function easier). A *pid* less than or |
| 1968 | equal to ``0`` has no special meaning on Windows, and raises an exception. The |
| 1969 | value of integer *options* has no effect. *pid* can refer to any process whose |
| 1970 | id is known, not necessarily a child process. The :func:`spawn` functions called |
| 1971 | with :const:`P_NOWAIT` return suitable process handles. |
| 1972 | |
| 1973 | |
| 1974 | .. function:: wait3([options]) |
| 1975 | |
| 1976 | Similar to :func:`waitpid`, except no process id argument is given and a |
| 1977 | 3-element tuple containing the child's process id, exit status indication, and |
| 1978 | resource usage information is returned. Refer to :mod:`resource`.\ |
| 1979 | :func:`getrusage` for details on resource usage information. The option |
| 1980 | argument is the same as that provided to :func:`waitpid` and :func:`wait4`. |
| 1981 | Availability: Unix. |
| 1982 | |
| 1983 | .. versionadded:: 2.5 |
| 1984 | |
| 1985 | |
| 1986 | .. function:: wait4(pid, options) |
| 1987 | |
| 1988 | Similar to :func:`waitpid`, except a 3-element tuple, containing the child's |
| 1989 | process id, exit status indication, and resource usage information is returned. |
| 1990 | Refer to :mod:`resource`.\ :func:`getrusage` for details on resource usage |
| 1991 | information. The arguments to :func:`wait4` are the same as those provided to |
| 1992 | :func:`waitpid`. Availability: Unix. |
| 1993 | |
| 1994 | .. versionadded:: 2.5 |
| 1995 | |
| 1996 | |
| 1997 | .. data:: WNOHANG |
| 1998 | |
| 1999 | The option for :func:`waitpid` to return immediately if no child process status |
| 2000 | is available immediately. The function returns ``(0, 0)`` in this case. |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 2001 | Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 2002 | |
| 2003 | |
| 2004 | .. data:: WCONTINUED |
| 2005 | |
| 2006 | This option causes child processes to be reported if they have been continued |
| 2007 | from a job control stop since their status was last reported. Availability: Some |
| 2008 | Unix systems. |
| 2009 | |
| 2010 | .. versionadded:: 2.3 |
| 2011 | |
| 2012 | |
| 2013 | .. data:: WUNTRACED |
| 2014 | |
| 2015 | This option causes child processes to be reported if they have been stopped but |
| 2016 | their current state has not been reported since they were stopped. Availability: |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 2017 | Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 2018 | |
| 2019 | .. versionadded:: 2.3 |
| 2020 | |
| 2021 | The following functions take a process status code as returned by |
| 2022 | :func:`system`, :func:`wait`, or :func:`waitpid` as a parameter. They may be |
| 2023 | used to determine the disposition of a process. |
| 2024 | |
| 2025 | |
| 2026 | .. function:: WCOREDUMP(status) |
| 2027 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 2028 | Return ``True`` if a core dump was generated for the process, otherwise |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 2029 | return ``False``. Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 2030 | |
| 2031 | .. versionadded:: 2.3 |
| 2032 | |
| 2033 | |
| 2034 | .. function:: WIFCONTINUED(status) |
| 2035 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 2036 | Return ``True`` if the process has been continued from a job control stop, |
| 2037 | otherwise return ``False``. Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 2038 | |
| 2039 | .. versionadded:: 2.3 |
| 2040 | |
| 2041 | |
| 2042 | .. function:: WIFSTOPPED(status) |
| 2043 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 2044 | Return ``True`` if the process has been stopped, otherwise return |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 2045 | ``False``. Availability: Unix. |
| 2046 | |
| 2047 | |
| 2048 | .. function:: WIFSIGNALED(status) |
| 2049 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 2050 | Return ``True`` if the process exited due to a signal, otherwise return |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 2051 | ``False``. Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 2052 | |
| 2053 | |
| 2054 | .. function:: WIFEXITED(status) |
| 2055 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 2056 | Return ``True`` if the process exited using the :manpage:`exit(2)` system call, |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 2057 | otherwise return ``False``. Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 2058 | |
| 2059 | |
| 2060 | .. function:: WEXITSTATUS(status) |
| 2061 | |
| 2062 | If ``WIFEXITED(status)`` is true, return the integer parameter to the |
| 2063 | :manpage:`exit(2)` system call. Otherwise, the return value is meaningless. |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 2064 | Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 2065 | |
| 2066 | |
| 2067 | .. function:: WSTOPSIG(status) |
| 2068 | |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 2069 | Return the signal which caused the process to stop. Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 2070 | |
| 2071 | |
| 2072 | .. function:: WTERMSIG(status) |
| 2073 | |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 2074 | Return the signal which caused the process to exit. Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 2075 | |
| 2076 | |
| 2077 | .. _os-path: |
| 2078 | |
| 2079 | Miscellaneous System Information |
| 2080 | -------------------------------- |
| 2081 | |
| 2082 | |
| 2083 | .. function:: confstr(name) |
| 2084 | |
| 2085 | Return string-valued system configuration values. *name* specifies the |
| 2086 | configuration value to retrieve; it may be a string which is the name of a |
| 2087 | defined system value; these names are specified in a number of standards (POSIX, |
| 2088 | Unix 95, Unix 98, and others). Some platforms define additional names as well. |
| 2089 | The names known to the host operating system are given as the keys of the |
| 2090 | ``confstr_names`` dictionary. For configuration variables not included in that |
| 2091 | mapping, passing an integer for *name* is also accepted. Availability: |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 2092 | Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 2093 | |
| 2094 | If the configuration value specified by *name* isn't defined, ``None`` is |
| 2095 | returned. |
| 2096 | |
| 2097 | If *name* is a string and is not known, :exc:`ValueError` is raised. If a |
| 2098 | specific value for *name* is not supported by the host system, even if it is |
| 2099 | included in ``confstr_names``, an :exc:`OSError` is raised with |
| 2100 | :const:`errno.EINVAL` for the error number. |
| 2101 | |
| 2102 | |
| 2103 | .. data:: confstr_names |
| 2104 | |
| 2105 | Dictionary mapping names accepted by :func:`confstr` to the integer values |
| 2106 | defined for those names by the host operating system. This can be used to |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 2107 | determine the set of names known to the system. Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 2108 | |
| 2109 | |
| 2110 | .. function:: getloadavg() |
| 2111 | |
Georg Brandl | 57fe0f2 | 2008-01-12 10:53:29 +0000 | [diff] [blame] | 2112 | Return the number of processes in the system run queue averaged over the last |
| 2113 | 1, 5, and 15 minutes or raises :exc:`OSError` if the load average was |
Georg Brandl | 6bb7bcf | 2008-05-30 19:12:13 +0000 | [diff] [blame] | 2114 | unobtainable. Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 2115 | |
| 2116 | .. versionadded:: 2.3 |
| 2117 | |
| 2118 | |
| 2119 | .. function:: sysconf(name) |
| 2120 | |
| 2121 | Return integer-valued system configuration values. If the configuration value |
| 2122 | specified by *name* isn't defined, ``-1`` is returned. The comments regarding |
| 2123 | the *name* parameter for :func:`confstr` apply here as well; the dictionary that |
| 2124 | provides information on the known names is given by ``sysconf_names``. |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 2125 | Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 2126 | |
| 2127 | |
| 2128 | .. data:: sysconf_names |
| 2129 | |
| 2130 | Dictionary mapping names accepted by :func:`sysconf` to the integer values |
| 2131 | defined for those names by the host operating system. This can be used to |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 2132 | determine the set of names known to the system. Availability: Unix. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 2133 | |
Georg Brandl | f725b95 | 2008-01-05 19:44:22 +0000 | [diff] [blame] | 2134 | The following data values are used to support path manipulation operations. These |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 2135 | are defined for all platforms. |
| 2136 | |
| 2137 | Higher-level operations on pathnames are defined in the :mod:`os.path` module. |
| 2138 | |
| 2139 | |
| 2140 | .. data:: curdir |
| 2141 | |
| 2142 | The constant string used by the operating system to refer to the current |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 2143 | directory. This is ``'.'`` for Windows and POSIX. Also available via |
| 2144 | :mod:`os.path`. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 2145 | |
| 2146 | |
| 2147 | .. data:: pardir |
| 2148 | |
| 2149 | The constant string used by the operating system to refer to the parent |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 2150 | directory. This is ``'..'`` for Windows and POSIX. Also available via |
| 2151 | :mod:`os.path`. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 2152 | |
| 2153 | |
| 2154 | .. data:: sep |
| 2155 | |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 2156 | The character used by the operating system to separate pathname components. |
| 2157 | This is ``'/'`` for POSIX and ``'\\'`` for Windows. Note that knowing this |
| 2158 | is not sufficient to be able to parse or concatenate pathnames --- use |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 2159 | :func:`os.path.split` and :func:`os.path.join` --- but it is occasionally |
| 2160 | useful. Also available via :mod:`os.path`. |
| 2161 | |
| 2162 | |
| 2163 | .. data:: altsep |
| 2164 | |
| 2165 | An alternative character used by the operating system to separate pathname |
| 2166 | components, or ``None`` if only one separator character exists. This is set to |
| 2167 | ``'/'`` on Windows systems where ``sep`` is a backslash. Also available via |
| 2168 | :mod:`os.path`. |
| 2169 | |
| 2170 | |
| 2171 | .. data:: extsep |
| 2172 | |
| 2173 | The character which separates the base filename from the extension; for example, |
| 2174 | the ``'.'`` in :file:`os.py`. Also available via :mod:`os.path`. |
| 2175 | |
| 2176 | .. versionadded:: 2.2 |
| 2177 | |
| 2178 | |
| 2179 | .. data:: pathsep |
| 2180 | |
| 2181 | The character conventionally used by the operating system to separate search |
| 2182 | path components (as in :envvar:`PATH`), such as ``':'`` for POSIX or ``';'`` for |
| 2183 | Windows. Also available via :mod:`os.path`. |
| 2184 | |
| 2185 | |
| 2186 | .. data:: defpath |
| 2187 | |
| 2188 | The default search path used by :func:`exec\*p\*` and :func:`spawn\*p\*` if the |
| 2189 | environment doesn't have a ``'PATH'`` key. Also available via :mod:`os.path`. |
| 2190 | |
| 2191 | |
| 2192 | .. data:: linesep |
| 2193 | |
| 2194 | The string used to separate (or, rather, terminate) lines on the current |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 2195 | platform. This may be a single character, such as ``'\n'`` for POSIX, or |
| 2196 | multiple characters, for example, ``'\r\n'`` for Windows. Do not use |
| 2197 | *os.linesep* as a line terminator when writing files opened in text mode (the |
| 2198 | default); use a single ``'\n'`` instead, on all platforms. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 2199 | |
| 2200 | |
| 2201 | .. data:: devnull |
| 2202 | |
Georg Brandl | 9af9498 | 2008-09-13 17:41:16 +0000 | [diff] [blame] | 2203 | The file path of the null device. For example: ``'/dev/null'`` for POSIX. |
| 2204 | Also available via :mod:`os.path`. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 2205 | |
| 2206 | .. versionadded:: 2.4 |
| 2207 | |
| 2208 | |
| 2209 | .. _os-miscfunc: |
| 2210 | |
| 2211 | Miscellaneous Functions |
| 2212 | ----------------------- |
| 2213 | |
| 2214 | |
| 2215 | .. function:: urandom(n) |
| 2216 | |
| 2217 | Return a string of *n* random bytes suitable for cryptographic use. |
| 2218 | |
| 2219 | This function returns random bytes from an OS-specific randomness source. The |
| 2220 | returned data should be unpredictable enough for cryptographic applications, |
| 2221 | though its exact quality depends on the OS implementation. On a UNIX-like |
| 2222 | system this will query /dev/urandom, and on Windows it will use CryptGenRandom. |
| 2223 | If a randomness source is not found, :exc:`NotImplementedError` will be raised. |
| 2224 | |
| 2225 | .. versionadded:: 2.4 |
| 2226 | |