Fred Drake | 295da24 | 1998-08-10 19:42:37 +0000 | [diff] [blame] | 1 | \section{\module{os} --- |
Fred Drake | 8ee679f | 2001-07-14 02:50:55 +0000 | [diff] [blame] | 2 | Miscellaneous operating system interfaces} |
Fred Drake | b91e934 | 1998-07-23 17:59:49 +0000 | [diff] [blame] | 3 | |
Fred Drake | ec6baaf | 1999-04-21 18:13:31 +0000 | [diff] [blame] | 4 | \declaremodule{standard}{os} |
Fred Drake | 8ee679f | 2001-07-14 02:50:55 +0000 | [diff] [blame] | 5 | \modulesynopsis{Miscellaneous operating system interfaces.} |
Fred Drake | b91e934 | 1998-07-23 17:59:49 +0000 | [diff] [blame] | 6 | |
Fred Drake | c4f15af | 1998-03-10 03:17:26 +0000 | [diff] [blame] | 7 | |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 8 | This module provides a more portable way of using operating system |
Fred Drake | 8ee679f | 2001-07-14 02:50:55 +0000 | [diff] [blame] | 9 | dependent functionality than importing a operating system dependent |
| 10 | built-in module like \refmodule{posix} or \module{nt}. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 11 | |
Fred Drake | 8ee679f | 2001-07-14 02:50:55 +0000 | [diff] [blame] | 12 | This module searches for an operating system dependent built-in module like |
Fred Drake | 2f97901 | 1999-06-11 18:28:37 +0000 | [diff] [blame] | 13 | \module{mac} or \refmodule{posix} and exports the same functions and data |
Fred Drake | 8ee679f | 2001-07-14 02:50:55 +0000 | [diff] [blame] | 14 | as found there. The design of all Python's built-in operating system dependent |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 15 | modules is such that as long as the same functionality is available, |
Fred Drake | 907e76b | 2001-07-06 20:30:11 +0000 | [diff] [blame] | 16 | it uses the same interface; for example, the function |
Fred Drake | ec6baaf | 1999-04-21 18:13:31 +0000 | [diff] [blame] | 17 | \code{os.stat(\var{path})} returns stat information about \var{path} in |
| 18 | the same format (which happens to have originated with the |
| 19 | \POSIX{} interface). |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 20 | |
Fred Drake | 8ee679f | 2001-07-14 02:50:55 +0000 | [diff] [blame] | 21 | Extensions peculiar to a particular operating system are also |
| 22 | available through the \module{os} module, but using them is of course a |
| 23 | threat to portability! |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 24 | |
Fred Drake | c4f15af | 1998-03-10 03:17:26 +0000 | [diff] [blame] | 25 | Note that after the first time \module{os} is imported, there is |
| 26 | \emph{no} performance penalty in using functions from \module{os} |
Fred Drake | 8ee679f | 2001-07-14 02:50:55 +0000 | [diff] [blame] | 27 | instead of directly from the operating system dependent built-in module, |
| 28 | so there should be \emph{no} reason not to use \module{os}! |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 29 | |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 30 | |
Fred Drake | 859dc53 | 1999-07-01 13:54:40 +0000 | [diff] [blame] | 31 | % Frank Stajano <fstajano@uk.research.att.com> complained that it |
| 32 | % wasn't clear that the entries described in the subsections were all |
| 33 | % available at the module level (most uses of subsections are |
| 34 | % different); I think this is only a problem for the HTML version, |
| 35 | % where the relationship may not be as clear. |
| 36 | % |
| 37 | \ifhtml |
| 38 | The \module{os} module contains many functions and data values. |
| 39 | The items below and in the following sub-sections are all available |
| 40 | directly from the \module{os} module. |
| 41 | \fi |
| 42 | |
| 43 | |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 44 | \begin{excdesc}{error} |
Fred Drake | 907e76b | 2001-07-06 20:30:11 +0000 | [diff] [blame] | 45 | This exception is raised when a function returns a system-related |
| 46 | error (not for illegal argument types or other incidental errors). |
| 47 | This is also known as the built-in exception \exception{OSError}. The |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 48 | accompanying value is a pair containing the numeric error code from |
| 49 | \cdata{errno} and the corresponding string, as would be printed by the |
| 50 | C function \cfunction{perror()}. See the module |
| 51 | \refmodule{errno}\refbimodindex{errno}, which contains names for the |
| 52 | error codes defined by the underlying operating system. |
| 53 | |
| 54 | When exceptions are classes, this exception carries two attributes, |
| 55 | \member{errno} and \member{strerror}. The first holds the value of |
| 56 | the C \cdata{errno} variable, and the latter holds the corresponding |
| 57 | error message from \cfunction{strerror()}. For exceptions that |
Fred Drake | 907e76b | 2001-07-06 20:30:11 +0000 | [diff] [blame] | 58 | involve a file system path (such as \function{chdir()} or |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 59 | \function{unlink()}), the exception instance will contain a third |
| 60 | attribute, \member{filename}, which is the file name passed to the |
| 61 | function. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 62 | \end{excdesc} |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 63 | |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 64 | \begin{datadesc}{name} |
Fred Drake | 8ee679f | 2001-07-14 02:50:55 +0000 | [diff] [blame] | 65 | The name of the operating system dependent module imported. The |
Fred Drake | 6995bb6 | 2001-11-29 20:48:44 +0000 | [diff] [blame] | 66 | following names have currently been registered: \code{'posix'}, |
| 67 | \code{'nt'}, \code{'dos'}, \code{'mac'}, \code{'os2'}, \code{'ce'}, |
| 68 | \code{'java'}, \code{'riscos'}. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 69 | \end{datadesc} |
| 70 | |
| 71 | \begin{datadesc}{path} |
Fred Drake | 8ee679f | 2001-07-14 02:50:55 +0000 | [diff] [blame] | 72 | The corresponding operating system dependent standard module for pathname |
Fred Drake | 907e76b | 2001-07-06 20:30:11 +0000 | [diff] [blame] | 73 | operations, such as \module{posixpath} or \module{macpath}. Thus, |
| 74 | given the proper imports, \code{os.path.split(\var{file})} is |
| 75 | equivalent to but more portable than |
| 76 | \code{posixpath.split(\var{file})}. Note that this is also an |
| 77 | importable module: it may be imported directly as |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 78 | \refmodule{os.path}. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 79 | \end{datadesc} |
| 80 | |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 81 | |
| 82 | |
| 83 | \subsection{Process Parameters \label{os-procinfo}} |
| 84 | |
| 85 | These functions and data items provide information and operate on the |
| 86 | current process and user. |
| 87 | |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 88 | \begin{datadesc}{environ} |
Fred Drake | 0e1de8b | 1999-04-29 12:57:32 +0000 | [diff] [blame] | 89 | A mapping object representing the string environment. For example, |
| 90 | \code{environ['HOME']} is the pathname of your home directory (on some |
| 91 | platforms), and is equivalent to \code{getenv("HOME")} in C. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 92 | |
| 93 | If the platform supports the \function{putenv()} function, this |
| 94 | mapping may be used to modify the environment as well as query the |
| 95 | environment. \function{putenv()} will be called automatically when |
| 96 | the mapping is modified. |
| 97 | |
| 98 | If \function{putenv()} is not provided, this mapping may be passed to |
Tim Peters | ab034fa | 2002-02-01 11:27:43 +0000 | [diff] [blame] | 99 | the appropriate process-creation functions to cause child processes to |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 100 | use a modified environment. |
| 101 | \end{datadesc} |
| 102 | |
Fred Drake | 6db897c | 1999-07-12 16:49:30 +0000 | [diff] [blame] | 103 | \begin{funcdescni}{chdir}{path} |
| 104 | \funclineni{getcwd}{} |
| 105 | These functions are described in ``Files and Directories'' (section |
| 106 | \ref{os-file-dir}). |
| 107 | \end{funcdescni} |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 108 | |
Fred Drake | 18f7a45 | 1999-12-09 22:11:43 +0000 | [diff] [blame] | 109 | \begin{funcdesc}{ctermid}{} |
| 110 | Return the filename corresponding to the controlling terminal of the |
| 111 | process. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 112 | Availability: \UNIX. |
Fred Drake | 18f7a45 | 1999-12-09 22:11:43 +0000 | [diff] [blame] | 113 | \end{funcdesc} |
| 114 | |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 115 | \begin{funcdesc}{getegid}{} |
| 116 | Return the current process' effective group id. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 117 | Availability: \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 118 | \end{funcdesc} |
| 119 | |
| 120 | \begin{funcdesc}{geteuid}{} |
Fred Drake | 6b330ba8 | 1999-05-25 13:42:26 +0000 | [diff] [blame] | 121 | \index{user!effective id} |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 122 | Return the current process' effective user id. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 123 | Availability: \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 124 | \end{funcdesc} |
| 125 | |
| 126 | \begin{funcdesc}{getgid}{} |
Fred Drake | 6b330ba8 | 1999-05-25 13:42:26 +0000 | [diff] [blame] | 127 | \index{process!group} |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 128 | Return the current process' group id. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 129 | Availability: \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 130 | \end{funcdesc} |
| 131 | |
Fred Drake | 88f6ca2 | 1999-12-15 19:39:04 +0000 | [diff] [blame] | 132 | \begin{funcdesc}{getgroups}{} |
| 133 | Return list of supplemental group ids associated with the current |
| 134 | process. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 135 | Availability: \UNIX. |
Fred Drake | 88f6ca2 | 1999-12-15 19:39:04 +0000 | [diff] [blame] | 136 | \end{funcdesc} |
| 137 | |
| 138 | \begin{funcdesc}{getlogin}{} |
| 139 | Return the actual login name for the current process, even if there |
| 140 | are multiple login names which map to the same user id. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 141 | Availability: \UNIX. |
Fred Drake | 88f6ca2 | 1999-12-15 19:39:04 +0000 | [diff] [blame] | 142 | \end{funcdesc} |
| 143 | |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 144 | \begin{funcdesc}{getpgrp}{} |
| 145 | \index{process!group} |
| 146 | Return the current process group id. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 147 | Availability: \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 148 | \end{funcdesc} |
| 149 | |
| 150 | \begin{funcdesc}{getpid}{} |
| 151 | \index{process!id} |
| 152 | Return the current process id. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 153 | Availability: \UNIX, Windows. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 154 | \end{funcdesc} |
| 155 | |
| 156 | \begin{funcdesc}{getppid}{} |
| 157 | \index{process!id of parent} |
| 158 | Return the parent's process id. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 159 | Availability: \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 160 | \end{funcdesc} |
| 161 | |
| 162 | \begin{funcdesc}{getuid}{} |
Fred Drake | 6b330ba8 | 1999-05-25 13:42:26 +0000 | [diff] [blame] | 163 | \index{user!id} |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 164 | Return the current process' user id. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 165 | Availability: \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 166 | \end{funcdesc} |
| 167 | |
Fred Drake | 81e142b | 2001-05-31 20:27:46 +0000 | [diff] [blame] | 168 | \begin{funcdesc}{getenv}{varname\optional{, value}} |
| 169 | Return the value of the environment variable \var{varname} if it |
| 170 | exists, or \var{value} if it doesn't. \var{value} defaults to |
| 171 | \code{None}. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 172 | Availability: most flavors of \UNIX, Windows. |
Fred Drake | 81e142b | 2001-05-31 20:27:46 +0000 | [diff] [blame] | 173 | \end{funcdesc} |
| 174 | |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 175 | \begin{funcdesc}{putenv}{varname, value} |
| 176 | \index{environment variables!setting} |
| 177 | Set the environment variable named \var{varname} to the string |
| 178 | \var{value}. Such changes to the environment affect subprocesses |
| 179 | started with \function{os.system()}, \function{popen()} or |
| 180 | \function{fork()} and \function{execv()}. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 181 | Availability: most flavors of \UNIX, Windows. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 182 | |
| 183 | When \function{putenv()} is |
| 184 | supported, assignments to items in \code{os.environ} are automatically |
| 185 | translated into corresponding calls to \function{putenv()}; however, |
| 186 | calls to \function{putenv()} don't update \code{os.environ}, so it is |
Tim Peters | ab034fa | 2002-02-01 11:27:43 +0000 | [diff] [blame] | 187 | actually preferable to assign to items of \code{os.environ}. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 188 | \end{funcdesc} |
| 189 | |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 190 | \begin{funcdesc}{setegid}{egid} |
| 191 | Set the current process's effective group id. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 192 | Availability: \UNIX. |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 193 | \end{funcdesc} |
| 194 | |
| 195 | \begin{funcdesc}{seteuid}{euid} |
| 196 | Set the current process's effective user id. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 197 | Availability: \UNIX. |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 198 | \end{funcdesc} |
| 199 | |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 200 | \begin{funcdesc}{setgid}{gid} |
| 201 | Set the current process' group id. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 202 | Availability: \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 203 | \end{funcdesc} |
| 204 | |
Martin v. Löwis | 61c5edf | 2001-10-18 04:06:00 +0000 | [diff] [blame] | 205 | \begin{funcdesc}{setgroups}{groups} |
Martin v. Löwis | c405133 | 2001-10-18 14:07:12 +0000 | [diff] [blame] | 206 | Set the list of supplemental group ids associated with the current |
| 207 | process to \var{groups}. \var{groups} must be a sequence, and each |
| 208 | element must be an integer identifying a group. This operation is |
| 209 | typical available only to the superuser. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 210 | Availability: \UNIX. |
Martin v. Löwis | 61c5edf | 2001-10-18 04:06:00 +0000 | [diff] [blame] | 211 | \versionadded{2.2} |
| 212 | \end{funcdesc} |
| 213 | |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 214 | \begin{funcdesc}{setpgrp}{} |
| 215 | Calls the system call \cfunction{setpgrp()} or \cfunction{setpgrp(0, |
| 216 | 0)} depending on which version is implemented (if any). See the |
| 217 | \UNIX{} manual for the semantics. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 218 | Availability: \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 219 | \end{funcdesc} |
| 220 | |
| 221 | \begin{funcdesc}{setpgid}{pid, pgrp} |
| 222 | Calls the system call \cfunction{setpgid()}. See the \UNIX{} manual |
| 223 | for the semantics. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 224 | Availability: \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 225 | \end{funcdesc} |
| 226 | |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 227 | \begin{funcdesc}{setreuid}{ruid, euid} |
| 228 | Set the current process's real and effective user ids. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 229 | Availability: \UNIX. |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 230 | \end{funcdesc} |
| 231 | |
| 232 | \begin{funcdesc}{setregid}{rgid, egid} |
| 233 | Set the current process's real and effective group ids. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 234 | Availability: \UNIX. |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 235 | \end{funcdesc} |
| 236 | |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 237 | \begin{funcdesc}{setsid}{} |
| 238 | Calls the system call \cfunction{setsid()}. See the \UNIX{} manual |
| 239 | for the semantics. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 240 | Availability: \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 241 | \end{funcdesc} |
| 242 | |
| 243 | \begin{funcdesc}{setuid}{uid} |
Fred Drake | 6b330ba8 | 1999-05-25 13:42:26 +0000 | [diff] [blame] | 244 | \index{user!id, setting} |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 245 | Set the current process' user id. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 246 | Availability: \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 247 | \end{funcdesc} |
| 248 | |
| 249 | % placed in this section since it relates to errno.... a little weak ;-( |
| 250 | \begin{funcdesc}{strerror}{code} |
| 251 | Return the error message corresponding to the error code in |
| 252 | \var{code}. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 253 | Availability: \UNIX, Windows. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 254 | \end{funcdesc} |
| 255 | |
| 256 | \begin{funcdesc}{umask}{mask} |
| 257 | Set the current numeric umask and returns the previous umask. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 258 | Availability: \UNIX, Windows. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 259 | \end{funcdesc} |
| 260 | |
| 261 | \begin{funcdesc}{uname}{} |
| 262 | Return a 5-tuple containing information identifying the current |
| 263 | operating system. The tuple contains 5 strings: |
| 264 | \code{(\var{sysname}, \var{nodename}, \var{release}, \var{version}, |
| 265 | \var{machine})}. Some systems truncate the nodename to 8 |
| 266 | characters or to the leading component; a better way to get the |
| 267 | hostname is \function{socket.gethostname()} |
| 268 | \withsubitem{(in module socket)}{\ttindex{gethostname()}} |
| 269 | or even |
| 270 | \withsubitem{(in module socket)}{\ttindex{gethostbyaddr()}} |
| 271 | \code{socket.gethostbyaddr(socket.gethostname())}. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 272 | Availability: recent flavors of \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 273 | \end{funcdesc} |
| 274 | |
| 275 | |
| 276 | |
| 277 | \subsection{File Object Creation \label{os-newstreams}} |
| 278 | |
| 279 | These functions create new file objects. |
| 280 | |
| 281 | |
| 282 | \begin{funcdesc}{fdopen}{fd\optional{, mode\optional{, bufsize}}} |
| 283 | Return an open file object connected to the file descriptor \var{fd}. |
Fred Drake | 8c9fc00 | 1999-08-05 13:41:31 +0000 | [diff] [blame] | 284 | \index{I/O control!buffering} |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 285 | The \var{mode} and \var{bufsize} arguments have the same meaning as |
| 286 | the corresponding arguments to the built-in \function{open()} |
| 287 | function. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 288 | Availability: Macintosh, \UNIX, Windows. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 289 | \end{funcdesc} |
| 290 | |
| 291 | \begin{funcdesc}{popen}{command\optional{, mode\optional{, bufsize}}} |
| 292 | Open a pipe to or from \var{command}. The return value is an open |
| 293 | file object connected to the pipe, which can be read or written |
| 294 | depending on whether \var{mode} is \code{'r'} (default) or \code{'w'}. |
| 295 | The \var{bufsize} argument has the same meaning as the corresponding |
| 296 | argument to the built-in \function{open()} function. The exit status of |
| 297 | the command (encoded in the format specified for \function{wait()}) is |
| 298 | available as the return value of the \method{close()} method of the file |
| 299 | object, except that when the exit status is zero (termination without |
Fred Drake | 1319e3e | 2000-10-03 17:14:27 +0000 | [diff] [blame] | 300 | errors), \code{None} is returned. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 301 | Availability: \UNIX, Windows. |
Fred Drake | c71c23e | 2000-10-04 13:57:27 +0000 | [diff] [blame] | 302 | |
| 303 | \versionchanged[This function worked unreliably under Windows in |
| 304 | earlier versions of Python. This was due to the use of the |
| 305 | \cfunction{_popen()} function from the libraries provided with |
| 306 | Windows. Newer versions of Python do not use the broken |
| 307 | implementation from the Windows libraries]{2.0} |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 308 | \end{funcdesc} |
| 309 | |
Fred Drake | 18f7a45 | 1999-12-09 22:11:43 +0000 | [diff] [blame] | 310 | \begin{funcdesc}{tmpfile}{} |
| 311 | Return a new file object opened in update mode (\samp{w+}). The file |
| 312 | has no directory entries associated with it and will be automatically |
| 313 | deleted once there are no file descriptors for the file. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 314 | Availability: \UNIX, Windows. |
Fred Drake | 18f7a45 | 1999-12-09 22:11:43 +0000 | [diff] [blame] | 315 | \end{funcdesc} |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 316 | |
| 317 | |
Fred Drake | 8a9db99 | 2000-09-28 20:27:51 +0000 | [diff] [blame] | 318 | For each of these \function{popen()} variants, if \var{bufsize} is |
| 319 | specified, it specifies the buffer size for the I/O pipes. |
| 320 | \var{mode}, if provided, should be the string \code{'b'} or |
| 321 | \code{'t'}; on Windows this is needed to determine whether the file |
| 322 | objects should be opened in binary or text mode. The default value |
| 323 | for \var{mode} is \code{'t'}. |
| 324 | |
Fred Drake | 098d7fa | 2001-09-11 19:56:51 +0000 | [diff] [blame] | 325 | These methods do not make it possible to retrieve the return code from |
| 326 | the child processes. The only way to control the input and output |
| 327 | streams and also retrieve the return codes is to use the |
| 328 | \class{Popen3} and \class{Popen4} classes from the \refmodule{popen2} |
| 329 | module; these are only available on \UNIX. |
| 330 | |
Fred Drake | 046f4d8 | 2001-06-11 15:21:48 +0000 | [diff] [blame] | 331 | \begin{funcdesc}{popen2}{cmd\optional{, mode\optional{, bufsize}}} |
Fred Drake | 8a9db99 | 2000-09-28 20:27:51 +0000 | [diff] [blame] | 332 | Executes \var{cmd} as a sub-process. Returns the file objects |
| 333 | \code{(\var{child_stdin}, \var{child_stdout})}. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 334 | Availability: \UNIX, Windows. |
Fred Drake | 8a9db99 | 2000-09-28 20:27:51 +0000 | [diff] [blame] | 335 | \versionadded{2.0} |
| 336 | \end{funcdesc} |
| 337 | |
Fred Drake | 046f4d8 | 2001-06-11 15:21:48 +0000 | [diff] [blame] | 338 | \begin{funcdesc}{popen3}{cmd\optional{, mode\optional{, bufsize}}} |
Fred Drake | 8a9db99 | 2000-09-28 20:27:51 +0000 | [diff] [blame] | 339 | Executes \var{cmd} as a sub-process. Returns the file objects |
| 340 | \code{(\var{child_stdin}, \var{child_stdout}, \var{child_stderr})}. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 341 | Availability: \UNIX, Windows. |
Fred Drake | 8a9db99 | 2000-09-28 20:27:51 +0000 | [diff] [blame] | 342 | \versionadded{2.0} |
| 343 | \end{funcdesc} |
| 344 | |
Fred Drake | 046f4d8 | 2001-06-11 15:21:48 +0000 | [diff] [blame] | 345 | \begin{funcdesc}{popen4}{cmd\optional{, mode\optional{, bufsize}}} |
Fred Drake | 8a9db99 | 2000-09-28 20:27:51 +0000 | [diff] [blame] | 346 | Executes \var{cmd} as a sub-process. Returns the file objects |
| 347 | \code{(\var{child_stdin}, \var{child_stdout_and_stderr})}. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 348 | Availability: \UNIX, Windows. |
Fred Drake | 8a9db99 | 2000-09-28 20:27:51 +0000 | [diff] [blame] | 349 | \versionadded{2.0} |
| 350 | \end{funcdesc} |
| 351 | |
| 352 | This functionality is also available in the \refmodule{popen2} module |
| 353 | using functions of the same names, but the return values of those |
| 354 | functions have a different order. |
| 355 | |
| 356 | |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 357 | \subsection{File Descriptor Operations \label{os-fd-ops}} |
| 358 | |
| 359 | These functions operate on I/O streams referred to |
| 360 | using file descriptors. |
| 361 | |
| 362 | |
| 363 | \begin{funcdesc}{close}{fd} |
| 364 | Close file descriptor \var{fd}. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 365 | Availability: Macintosh, \UNIX, Windows. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 366 | |
| 367 | Note: this function is intended for low-level I/O and must be applied |
| 368 | to a file descriptor as returned by \function{open()} or |
| 369 | \function{pipe()}. To close a ``file object'' returned by the |
| 370 | built-in function \function{open()} or by \function{popen()} or |
| 371 | \function{fdopen()}, use its \method{close()} method. |
| 372 | \end{funcdesc} |
| 373 | |
| 374 | \begin{funcdesc}{dup}{fd} |
| 375 | Return a duplicate of file descriptor \var{fd}. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 376 | Availability: Macintosh, \UNIX, Windows. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 377 | \end{funcdesc} |
| 378 | |
| 379 | \begin{funcdesc}{dup2}{fd, fd2} |
| 380 | Duplicate file descriptor \var{fd} to \var{fd2}, closing the latter |
| 381 | first if necessary. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 382 | Availability: \UNIX, Windows. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 383 | \end{funcdesc} |
| 384 | |
Fred Drake | 88f6ca2 | 1999-12-15 19:39:04 +0000 | [diff] [blame] | 385 | \begin{funcdesc}{fpathconf}{fd, name} |
Thomas Wouters | f831663 | 2000-07-16 19:01:10 +0000 | [diff] [blame] | 386 | Return system configuration information relevant to an open file. |
Fred Drake | 88f6ca2 | 1999-12-15 19:39:04 +0000 | [diff] [blame] | 387 | \var{name} specifies the configuration value to retrieve; it may be a |
| 388 | string which is the name of a defined system value; these names are |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 389 | specified in a number of standards (\POSIX.1, \UNIX 95, \UNIX 98, and |
Fred Drake | 88f6ca2 | 1999-12-15 19:39:04 +0000 | [diff] [blame] | 390 | others). Some platforms define additional names as well. The names |
| 391 | known to the host operating system are given in the |
| 392 | \code{pathconf_names} dictionary. For configuration variables not |
| 393 | included in that mapping, passing an integer for \var{name} is also |
| 394 | accepted. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 395 | Availability: \UNIX. |
Fred Drake | 88f6ca2 | 1999-12-15 19:39:04 +0000 | [diff] [blame] | 396 | |
| 397 | If \var{name} is a string and is not known, \exception{ValueError} is |
| 398 | raised. If a specific value for \var{name} is not supported by the |
| 399 | host system, even if it is included in \code{pathconf_names}, an |
| 400 | \exception{OSError} is raised with \constant{errno.EINVAL} for the |
| 401 | error number. |
| 402 | \end{funcdesc} |
| 403 | |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 404 | \begin{funcdesc}{fstat}{fd} |
| 405 | Return status for file descriptor \var{fd}, like \function{stat()}. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 406 | Availability: \UNIX, Windows. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 407 | \end{funcdesc} |
| 408 | |
| 409 | \begin{funcdesc}{fstatvfs}{fd} |
| 410 | Return information about the filesystem containing the file associated |
| 411 | with file descriptor \var{fd}, like \function{statvfs()}. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 412 | Availability: \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 413 | \end{funcdesc} |
| 414 | |
| 415 | \begin{funcdesc}{ftruncate}{fd, length} |
Tim Peters | ab034fa | 2002-02-01 11:27:43 +0000 | [diff] [blame] | 416 | Truncate the file corresponding to file descriptor \var{fd}, |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 417 | so that it is at most \var{length} bytes in size. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 418 | Availability: \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 419 | \end{funcdesc} |
| 420 | |
Skip Montanaro | d372521 | 2000-07-19 17:30:58 +0000 | [diff] [blame] | 421 | \begin{funcdesc}{isatty}{fd} |
| 422 | Return \code{1} if the file descriptor \var{fd} is open and connected to a |
| 423 | tty(-like) device, else \code{0}. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 424 | Availability: \UNIX. |
Skip Montanaro | d372521 | 2000-07-19 17:30:58 +0000 | [diff] [blame] | 425 | \end{funcdesc} |
| 426 | |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 427 | \begin{funcdesc}{lseek}{fd, pos, how} |
| 428 | Set the current position of file descriptor \var{fd} to position |
| 429 | \var{pos}, modified by \var{how}: \code{0} to set the position |
| 430 | relative to the beginning of the file; \code{1} to set it relative to |
| 431 | the current position; \code{2} to set it relative to the end of the |
| 432 | file. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 433 | Availability: Macintosh, \UNIX, Windows. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 434 | \end{funcdesc} |
| 435 | |
| 436 | \begin{funcdesc}{open}{file, flags\optional{, mode}} |
| 437 | Open the file \var{file} and set various flags according to |
| 438 | \var{flags} and possibly its mode according to \var{mode}. |
| 439 | The default \var{mode} is \code{0777} (octal), and the current umask |
| 440 | value is first masked out. Return the file descriptor for the newly |
| 441 | opened file. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 442 | Availability: Macintosh, \UNIX, Windows. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 443 | |
| 444 | For a description of the flag and mode values, see the C run-time |
| 445 | documentation; flag constants (like \constant{O_RDONLY} and |
| 446 | \constant{O_WRONLY}) are defined in this module too (see below). |
| 447 | |
| 448 | Note: this function is intended for low-level I/O. For normal usage, |
| 449 | use the built-in function \function{open()}, which returns a ``file |
| 450 | object'' with \method{read()} and \method{write()} methods (and many |
| 451 | more). |
| 452 | \end{funcdesc} |
| 453 | |
Fred Drake | c82634c | 2000-06-28 17:27:48 +0000 | [diff] [blame] | 454 | \begin{funcdesc}{openpty}{} |
| 455 | Open a new pseudo-terminal pair. Return a pair of file descriptors |
| 456 | \code{(\var{master}, \var{slave})} for the pty and the tty, |
| 457 | respectively. For a (slightly) more portable approach, use the |
| 458 | \refmodule{pty}\refstmodindex{pty} module. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 459 | Availability: Some flavors of \UNIX. |
Fred Drake | c82634c | 2000-06-28 17:27:48 +0000 | [diff] [blame] | 460 | \end{funcdesc} |
| 461 | |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 462 | \begin{funcdesc}{pipe}{} |
| 463 | Create a pipe. Return a pair of file descriptors \code{(\var{r}, |
| 464 | \var{w})} usable for reading and writing, respectively. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 465 | Availability: \UNIX, Windows. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 466 | \end{funcdesc} |
| 467 | |
| 468 | \begin{funcdesc}{read}{fd, n} |
| 469 | Read at most \var{n} bytes from file descriptor \var{fd}. |
| 470 | Return a string containing the bytes read. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 471 | Availability: Macintosh, \UNIX, Windows. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 472 | |
| 473 | Note: this function is intended for low-level I/O and must be applied |
| 474 | to a file descriptor as returned by \function{open()} or |
| 475 | \function{pipe()}. To read a ``file object'' returned by the |
| 476 | built-in function \function{open()} or by \function{popen()} or |
| 477 | \function{fdopen()}, or \code{sys.stdin}, use its |
| 478 | \method{read()} or \method{readline()} methods. |
| 479 | \end{funcdesc} |
| 480 | |
| 481 | \begin{funcdesc}{tcgetpgrp}{fd} |
| 482 | Return the process group associated with the terminal given by |
| 483 | \var{fd} (an open file descriptor as returned by \function{open()}). |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 484 | Availability: \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 485 | \end{funcdesc} |
| 486 | |
| 487 | \begin{funcdesc}{tcsetpgrp}{fd, pg} |
| 488 | Set the process group associated with the terminal given by |
| 489 | \var{fd} (an open file descriptor as returned by \function{open()}) |
| 490 | to \var{pg}. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 491 | Availability: \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 492 | \end{funcdesc} |
| 493 | |
| 494 | \begin{funcdesc}{ttyname}{fd} |
| 495 | Return a string which specifies the terminal device associated with |
| 496 | file-descriptor \var{fd}. If \var{fd} is not associated with a terminal |
| 497 | device, an exception is raised. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 498 | Availability: \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 499 | \end{funcdesc} |
| 500 | |
| 501 | \begin{funcdesc}{write}{fd, str} |
| 502 | Write the string \var{str} to file descriptor \var{fd}. |
| 503 | Return the number of bytes actually written. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 504 | Availability: Macintosh, \UNIX, Windows. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 505 | |
| 506 | Note: this function is intended for low-level I/O and must be applied |
| 507 | to a file descriptor as returned by \function{open()} or |
| 508 | \function{pipe()}. To write a ``file object'' returned by the |
| 509 | built-in function \function{open()} or by \function{popen()} or |
| 510 | \function{fdopen()}, or \code{sys.stdout} or \code{sys.stderr}, use |
| 511 | its \method{write()} method. |
| 512 | \end{funcdesc} |
| 513 | |
| 514 | |
| 515 | The following data items are available for use in constructing the |
| 516 | \var{flags} parameter to the \function{open()} function. |
| 517 | |
| 518 | \begin{datadesc}{O_RDONLY} |
| 519 | \dataline{O_WRONLY} |
| 520 | \dataline{O_RDWR} |
| 521 | \dataline{O_NDELAY} |
| 522 | \dataline{O_NONBLOCK} |
| 523 | \dataline{O_APPEND} |
| 524 | \dataline{O_DSYNC} |
| 525 | \dataline{O_RSYNC} |
| 526 | \dataline{O_SYNC} |
| 527 | \dataline{O_NOCTTY} |
| 528 | \dataline{O_CREAT} |
| 529 | \dataline{O_EXCL} |
| 530 | \dataline{O_TRUNC} |
| 531 | Options for the \var{flag} argument to the \function{open()} function. |
| 532 | These can be bit-wise OR'd together. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 533 | Availability: Macintosh, \UNIX, Windows. |
Tim Peters | c48a3ca | 2002-01-30 05:49:46 +0000 | [diff] [blame] | 534 | % XXX O_NDELAY, O_NONBLOCK, O_DSYNC, O_RSYNC, O_SYNC, O_NOCTTY are not on Windows. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 535 | \end{datadesc} |
| 536 | |
Fred Drake | 3ac977e | 2000-08-11 20:19:51 +0000 | [diff] [blame] | 537 | \begin{datadesc}{O_BINARY} |
| 538 | Option for the \var{flag} argument to the \function{open()} function. |
| 539 | This can be bit-wise OR'd together with those listed above. |
| 540 | Availability: Macintosh, Windows. |
| 541 | % XXX need to check on the availability of this one. |
| 542 | \end{datadesc} |
| 543 | |
Tim Peters | c48a3ca | 2002-01-30 05:49:46 +0000 | [diff] [blame] | 544 | \begin{datadesc}{O_NOINHERIT} |
| 545 | \dataline{O_SHORT_LIVED} |
| 546 | \dataline{O_TEMPORARY} |
| 547 | \dataline{O_RANDOM} |
| 548 | \dataline{O_SEQUENTIAL} |
| 549 | \dataline{O_TEXT} |
| 550 | Options for the \var{flag} argument to the \function{open()} function. |
| 551 | These can be bit-wise OR'd together. |
| 552 | Availability: Windows. |
| 553 | \end{datadesc} |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 554 | |
| 555 | \subsection{Files and Directories \label{os-file-dir}} |
| 556 | |
| 557 | \begin{funcdesc}{access}{path, mode} |
Fred Drake | 38e5d27 | 2000-04-03 20:13:55 +0000 | [diff] [blame] | 558 | Check read/write/execute permissions for this process or existence of |
| 559 | file \var{path}. \var{mode} should be \constant{F_OK} to test the |
| 560 | existence of \var{path}, or it can be the inclusive OR of one or more |
| 561 | of \constant{R_OK}, \constant{W_OK}, and \constant{X_OK} to test |
| 562 | permissions. Return \code{1} if access is allowed, \code{0} if not. |
| 563 | See the \UNIX{} man page \manpage{access}{2} for more information. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 564 | Availability: \UNIX, Windows. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 565 | \end{funcdesc} |
| 566 | |
Fred Drake | 38e5d27 | 2000-04-03 20:13:55 +0000 | [diff] [blame] | 567 | \begin{datadesc}{F_OK} |
| 568 | Value to pass as the \var{mode} parameter of \function{access()} to |
| 569 | test the existence of \var{path}. |
| 570 | \end{datadesc} |
| 571 | |
| 572 | \begin{datadesc}{R_OK} |
| 573 | Value to include in the \var{mode} parameter of \function{access()} |
| 574 | to test the readability of \var{path}. |
| 575 | \end{datadesc} |
| 576 | |
| 577 | \begin{datadesc}{W_OK} |
| 578 | Value to include in the \var{mode} parameter of \function{access()} |
| 579 | to test the writability of \var{path}. |
| 580 | \end{datadesc} |
| 581 | |
| 582 | \begin{datadesc}{X_OK} |
| 583 | Value to include in the \var{mode} parameter of \function{access()} |
| 584 | to determine if \var{path} can be executed. |
| 585 | \end{datadesc} |
| 586 | |
Fred Drake | 6db897c | 1999-07-12 16:49:30 +0000 | [diff] [blame] | 587 | \begin{funcdesc}{chdir}{path} |
| 588 | \index{directory!changing} |
| 589 | Change the current working directory to \var{path}. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 590 | Availability: Macintosh, \UNIX, Windows. |
Fred Drake | 6db897c | 1999-07-12 16:49:30 +0000 | [diff] [blame] | 591 | \end{funcdesc} |
| 592 | |
| 593 | \begin{funcdesc}{getcwd}{} |
| 594 | Return a string representing the current working directory. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 595 | Availability: Macintosh, \UNIX, Windows. |
Fred Drake | 6db897c | 1999-07-12 16:49:30 +0000 | [diff] [blame] | 596 | \end{funcdesc} |
| 597 | |
Martin v. Löwis | 244edc8 | 2001-10-04 22:44:26 +0000 | [diff] [blame] | 598 | \begin{funcdesc}{chroot}{path} |
| 599 | Change the root directory of the current process to \var{path}. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 600 | Availability: \UNIX. |
Martin v. Löwis | 244edc8 | 2001-10-04 22:44:26 +0000 | [diff] [blame] | 601 | \versionadded{2.2} |
| 602 | \end{funcdesc} |
| 603 | |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 604 | \begin{funcdesc}{chmod}{path, mode} |
| 605 | Change the mode of \var{path} to the numeric \var{mode}. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 606 | Availability: \UNIX, Windows. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 607 | \end{funcdesc} |
| 608 | |
| 609 | \begin{funcdesc}{chown}{path, uid, gid} |
| 610 | Change the owner and group id of \var{path} to the numeric \var{uid} |
| 611 | and \var{gid}. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 612 | Availability: \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 613 | \end{funcdesc} |
| 614 | |
| 615 | \begin{funcdesc}{link}{src, dst} |
| 616 | Create a hard link pointing to \var{src} named \var{dst}. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 617 | Availability: \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 618 | \end{funcdesc} |
| 619 | |
| 620 | \begin{funcdesc}{listdir}{path} |
| 621 | Return a list containing the names of the entries in the directory. |
| 622 | The list is in arbitrary order. It does not include the special |
| 623 | entries \code{'.'} and \code{'..'} even if they are present in the |
| 624 | directory. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 625 | Availability: Macintosh, \UNIX, Windows. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 626 | \end{funcdesc} |
| 627 | |
| 628 | \begin{funcdesc}{lstat}{path} |
| 629 | Like \function{stat()}, but do not follow symbolic links. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 630 | Availability: \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 631 | \end{funcdesc} |
| 632 | |
| 633 | \begin{funcdesc}{mkfifo}{path\optional{, mode}} |
| 634 | Create a FIFO (a named pipe) named \var{path} with numeric mode |
| 635 | \var{mode}. The default \var{mode} is \code{0666} (octal). The current |
| 636 | umask value is first masked out from the mode. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 637 | Availability: \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 638 | |
| 639 | FIFOs are pipes that can be accessed like regular files. FIFOs exist |
| 640 | until they are deleted (for example with \function{os.unlink()}). |
| 641 | Generally, FIFOs are used as rendezvous between ``client'' and |
| 642 | ``server'' type processes: the server opens the FIFO for reading, and |
| 643 | the client opens it for writing. Note that \function{mkfifo()} |
| 644 | doesn't open the FIFO --- it just creates the rendezvous point. |
| 645 | \end{funcdesc} |
| 646 | |
| 647 | \begin{funcdesc}{mkdir}{path\optional{, mode}} |
| 648 | Create a directory named \var{path} with numeric mode \var{mode}. |
| 649 | The default \var{mode} is \code{0777} (octal). On some systems, |
| 650 | \var{mode} is ignored. Where it is used, the current umask value is |
| 651 | first masked out. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 652 | Availability: Macintosh, \UNIX, Windows. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 653 | \end{funcdesc} |
| 654 | |
| 655 | \begin{funcdesc}{makedirs}{path\optional{, mode}} |
| 656 | \index{directory!creating} |
| 657 | Recursive directory creation function. Like \function{mkdir()}, |
| 658 | but makes all intermediate-level directories needed to contain the |
| 659 | leaf directory. Throws an \exception{error} exception if the leaf |
| 660 | directory already exists or cannot be created. The default \var{mode} |
Fred Drake | bbf7a40 | 2001-09-28 16:14:18 +0000 | [diff] [blame] | 661 | is \code{0777} (octal). This function does not properly handle UNC |
| 662 | paths (only relevant on Windows systems). |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 663 | \versionadded{1.5.2} |
| 664 | \end{funcdesc} |
| 665 | |
Fred Drake | 88f6ca2 | 1999-12-15 19:39:04 +0000 | [diff] [blame] | 666 | \begin{funcdesc}{pathconf}{path, name} |
Thomas Wouters | f831663 | 2000-07-16 19:01:10 +0000 | [diff] [blame] | 667 | Return system configuration information relevant to a named file. |
Fred Drake | 88f6ca2 | 1999-12-15 19:39:04 +0000 | [diff] [blame] | 668 | \var{name} specifies the configuration value to retrieve; it may be a |
| 669 | string which is the name of a defined system value; these names are |
Fred Drake | 8ee679f | 2001-07-14 02:50:55 +0000 | [diff] [blame] | 670 | specified in a number of standards (\POSIX.1, \UNIX 95, \UNIX 98, and |
Fred Drake | 88f6ca2 | 1999-12-15 19:39:04 +0000 | [diff] [blame] | 671 | others). Some platforms define additional names as well. The names |
| 672 | known to the host operating system are given in the |
| 673 | \code{pathconf_names} dictionary. For configuration variables not |
| 674 | included in that mapping, passing an integer for \var{name} is also |
| 675 | accepted. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 676 | Availability: \UNIX. |
Fred Drake | 88f6ca2 | 1999-12-15 19:39:04 +0000 | [diff] [blame] | 677 | |
| 678 | If \var{name} is a string and is not known, \exception{ValueError} is |
| 679 | raised. If a specific value for \var{name} is not supported by the |
| 680 | host system, even if it is included in \code{pathconf_names}, an |
| 681 | \exception{OSError} is raised with \constant{errno.EINVAL} for the |
| 682 | error number. |
| 683 | \end{funcdesc} |
| 684 | |
| 685 | \begin{datadesc}{pathconf_names} |
| 686 | Dictionary mapping names accepted by \function{pathconf()} and |
| 687 | \function{fpathconf()} to the integer values defined for those names |
| 688 | by the host operating system. This can be used to determine the set |
| 689 | of names known to the system. |
| 690 | Availability: \UNIX. |
| 691 | \end{datadesc} |
| 692 | |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 693 | \begin{funcdesc}{readlink}{path} |
| 694 | Return a string representing the path to which the symbolic link |
Fred Drake | dc9e7e4 | 2001-05-29 18:13:06 +0000 | [diff] [blame] | 695 | points. The result may be either an absolute or relative pathname; if |
| 696 | it is relative, it may be converted to an absolute pathname using |
| 697 | \code{os.path.join(os.path.dirname(\var{path}), \var{result})}. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 698 | Availability: \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 699 | \end{funcdesc} |
| 700 | |
| 701 | \begin{funcdesc}{remove}{path} |
Fred Drake | dc9e7e4 | 2001-05-29 18:13:06 +0000 | [diff] [blame] | 702 | Remove the file \var{path}. If \var{path} is a directory, |
| 703 | \exception{OSError} is raised; see \function{rmdir()} below to remove |
| 704 | a directory. This is identical to the \function{unlink()} function |
| 705 | documented below. On Windows, attempting to remove a file that is in |
| 706 | use causes an exception to be raised; on \UNIX, the directory entry is |
| 707 | removed but the storage allocated to the file is not made available |
| 708 | until the original file is no longer in use. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 709 | Availability: Macintosh, \UNIX, Windows. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 710 | \end{funcdesc} |
| 711 | |
| 712 | \begin{funcdesc}{removedirs}{path} |
| 713 | \index{directory!deleting} |
| 714 | Recursive directory removal function. Works like |
| 715 | \function{rmdir()} except that, if the leaf directory is |
| 716 | successfully removed, directories corresponding to rightmost path |
| 717 | segments will be pruned way until either the whole path is consumed or |
| 718 | an error is raised (which is ignored, because it generally means that |
| 719 | a parent directory is not empty). Throws an \exception{error} |
| 720 | exception if the leaf directory could not be successfully removed. |
| 721 | \versionadded{1.5.2} |
| 722 | \end{funcdesc} |
| 723 | |
| 724 | \begin{funcdesc}{rename}{src, dst} |
Fred Drake | dc9e7e4 | 2001-05-29 18:13:06 +0000 | [diff] [blame] | 725 | Rename the file or directory \var{src} to \var{dst}. If \var{dst} is |
| 726 | a directory, \exception{OSError} will be raised. On \UNIX, if |
| 727 | \var{dst} exists and is a file, it will be removed silently if the |
| 728 | user has permission. The operation may fail on some \UNIX{} flavors |
Skip Montanaro | b9d973d | 2001-06-04 15:31:17 +0000 | [diff] [blame] | 729 | if \var{src} and \var{dst} are on different filesystems. If |
Fred Drake | dc9e7e4 | 2001-05-29 18:13:06 +0000 | [diff] [blame] | 730 | successful, the renaming will be an atomic operation (this is a |
| 731 | \POSIX{} requirement). On Windows, if \var{dst} already exists, |
| 732 | \exception{OSError} will be raised even if it is a file; there may be |
| 733 | no way to implement an atomic rename when \var{dst} names an existing |
| 734 | file. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 735 | Availability: Macintosh, \UNIX, Windows. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 736 | \end{funcdesc} |
| 737 | |
| 738 | \begin{funcdesc}{renames}{old, new} |
| 739 | Recursive directory or file renaming function. |
| 740 | Works like \function{rename()}, except creation of any intermediate |
| 741 | directories needed to make the new pathname good is attempted first. |
| 742 | After the rename, directories corresponding to rightmost path segments |
| 743 | of the old name will be pruned away using \function{removedirs()}. |
| 744 | |
| 745 | Note: this function can fail with the new directory structure made if |
| 746 | you lack permissions needed to remove the leaf directory or file. |
| 747 | \versionadded{1.5.2} |
| 748 | \end{funcdesc} |
| 749 | |
| 750 | \begin{funcdesc}{rmdir}{path} |
| 751 | Remove the directory \var{path}. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 752 | Availability: Macintosh, \UNIX, Windows. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 753 | \end{funcdesc} |
| 754 | |
| 755 | \begin{funcdesc}{stat}{path} |
| 756 | Perform a \cfunction{stat()} system call on the given path. The |
Fred Drake | 6995bb6 | 2001-11-29 20:48:44 +0000 | [diff] [blame] | 757 | return value is an object whose attributes correspond to the members of |
| 758 | the \ctype{stat} structure, namely: |
| 759 | \member{st_mode} (protection bits), |
| 760 | \member{st_ino} (inode number), |
| 761 | \member{st_dev} (device), |
| 762 | \member{st_nlink} (number of hard links, |
| 763 | \member{st_uid} (user ID of owner), |
| 764 | \member{st_gid} (group ID of owner), |
| 765 | \member{st_size} (size of file, in bytes), |
| 766 | \member{st_atime} (time of most recent access), |
| 767 | \member{st_mtime} (time of most recent content modification), |
| 768 | \member{st_ctime} |
| 769 | (time of most recent content modification or metadata change). |
| 770 | |
| 771 | On some Unix systems (such as Linux), the following attributes may |
| 772 | also be available: |
| 773 | \member{st_blocks} (number of blocks allocated for file), |
| 774 | \member{st_blksize} (filesystem blocksize), |
| 775 | \member{st_rdev} (type of device if an inode device). |
| 776 | |
| 777 | On Mac OS systems, the following attributes may also be available: |
| 778 | \member{st_rsize}, |
| 779 | \member{st_creator}, |
| 780 | \member{st_type}. |
| 781 | |
| 782 | On RISCOS systems, the following attributes are also available: |
| 783 | \member{st_ftype} (file type), |
| 784 | \member{st_attrs} (attributes), |
| 785 | \member{st_obtype} (object type). |
| 786 | |
| 787 | For backward compatibility, the return value of \function{stat()} is |
| 788 | also accessible as a tuple of at least 10 integers giving the most |
| 789 | important (and portable) members of the \ctype{stat} structure, in the |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 790 | order |
Fred Drake | 6995bb6 | 2001-11-29 20:48:44 +0000 | [diff] [blame] | 791 | \member{st_mode}, |
| 792 | \member{st_ino}, |
| 793 | \member{st_dev}, |
| 794 | \member{st_nlink}, |
| 795 | \member{st_uid}, |
| 796 | \member{st_gid}, |
| 797 | \member{st_size}, |
| 798 | \member{st_atime}, |
| 799 | \member{st_mtime}, |
| 800 | \member{st_ctime}. |
Fred Drake | 21c9df7 | 2000-10-14 05:46:11 +0000 | [diff] [blame] | 801 | More items may be added at the end by some implementations. Note that |
Fred Drake | 8ee679f | 2001-07-14 02:50:55 +0000 | [diff] [blame] | 802 | on the Mac OS, the time values are floating point values, like all |
| 803 | time values on the Mac OS. |
Fred Drake | 6995bb6 | 2001-11-29 20:48:44 +0000 | [diff] [blame] | 804 | The standard module \refmodule{stat}\refstmodindex{stat} defines |
| 805 | functions and constants that are useful for extracting information |
| 806 | from a \ctype{stat} structure. |
Fred Drake | 8ee679f | 2001-07-14 02:50:55 +0000 | [diff] [blame] | 807 | (On Windows, some items are filled with dummy values.) |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 808 | Availability: Macintosh, \UNIX, Windows. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 809 | |
Fred Drake | 6995bb6 | 2001-11-29 20:48:44 +0000 | [diff] [blame] | 810 | \versionchanged |
| 811 | [Added access to values as attributes of the returned object]{2.2} |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 812 | \end{funcdesc} |
| 813 | |
| 814 | \begin{funcdesc}{statvfs}{path} |
| 815 | Perform a \cfunction{statvfs()} system call on the given path. The |
Fred Drake | 6995bb6 | 2001-11-29 20:48:44 +0000 | [diff] [blame] | 816 | return value is an object whose attributes describe the filesystem on |
| 817 | the given path, and correspond to the members of the |
| 818 | \ctype{statvfs} structure, namely: |
| 819 | \member{f_frsize}, |
| 820 | \member{f_blocks}, |
| 821 | \member{f_bfree}, |
| 822 | \member{f_bavail}, |
| 823 | \member{f_files}, |
| 824 | \member{f_ffree}, |
| 825 | \member{f_favail}, |
| 826 | \member{f_flag}, |
| 827 | \member{f_namemax}. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 828 | Availability: \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 829 | |
Fred Drake | 6995bb6 | 2001-11-29 20:48:44 +0000 | [diff] [blame] | 830 | For backward compatibility, the return value is also accessible as a |
| 831 | tuple whose values correspond to the attributes, in the order given above. |
| 832 | The standard module \refmodule{statvfs}\refstmodindex{statvfs} |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 833 | defines constants that are useful for extracting information |
Fred Drake | 6995bb6 | 2001-11-29 20:48:44 +0000 | [diff] [blame] | 834 | from a \ctype{statvfs} structure when accessing it as a sequence; this |
| 835 | remains useful when writing code that needs to work with versions of |
| 836 | Python that don't support accessing the fields as attributes. |
| 837 | |
| 838 | \versionchanged |
| 839 | [Added access to values as attributes of the returned object]{2.2} |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 840 | \end{funcdesc} |
| 841 | |
| 842 | \begin{funcdesc}{symlink}{src, dst} |
| 843 | Create a symbolic link pointing to \var{src} named \var{dst}. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 844 | Availability: \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 845 | \end{funcdesc} |
| 846 | |
Fred Drake | 18f7a45 | 1999-12-09 22:11:43 +0000 | [diff] [blame] | 847 | \begin{funcdesc}{tempnam}{\optional{dir\optional{, prefix}}} |
| 848 | Return a unique path name that is reasonable for creating a temporary |
| 849 | file. This will be an absolute path that names a potential directory |
| 850 | entry in the directory \var{dir} or a common location for temporary |
| 851 | files if \var{dir} is omitted or \code{None}. If given and not |
| 852 | \code{None}, \var{prefix} is used to provide a short prefix to the |
| 853 | filename. Applications are responsible for properly creating and |
| 854 | managing files created using paths returned by \function{tempnam()}; |
| 855 | no automatic cleanup is provided. |
Fred Drake | 938a8d7 | 2001-10-09 18:07:04 +0000 | [diff] [blame] | 856 | \warning{Use of \function{tempnam()} is vulnerable to symlink attacks; |
| 857 | consider using \function{tmpfile()} instead.} |
Fred Drake | efaef13 | 2001-07-17 20:39:18 +0000 | [diff] [blame] | 858 | Availability: \UNIX, Windows. |
Fred Drake | 18f7a45 | 1999-12-09 22:11:43 +0000 | [diff] [blame] | 859 | \end{funcdesc} |
| 860 | |
| 861 | \begin{funcdesc}{tmpnam}{} |
| 862 | Return a unique path name that is reasonable for creating a temporary |
| 863 | file. This will be an absolute path that names a potential directory |
| 864 | entry in a common location for temporary files. Applications are |
| 865 | responsible for properly creating and managing files created using |
| 866 | paths returned by \function{tmpnam()}; no automatic cleanup is |
| 867 | provided. |
Fred Drake | 938a8d7 | 2001-10-09 18:07:04 +0000 | [diff] [blame] | 868 | \warning{Use of \function{tmpnam()} is vulnerable to symlink attacks; |
| 869 | consider using \function{tmpfile()} instead.} |
Fred Drake | efaef13 | 2001-07-17 20:39:18 +0000 | [diff] [blame] | 870 | Availability: \UNIX, Windows. |
Fred Drake | 18f7a45 | 1999-12-09 22:11:43 +0000 | [diff] [blame] | 871 | \end{funcdesc} |
| 872 | |
| 873 | \begin{datadesc}{TMP_MAX} |
| 874 | The maximum number of unique names that \function{tmpnam()} will |
| 875 | generate before reusing names. |
| 876 | \end{datadesc} |
| 877 | |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 878 | \begin{funcdesc}{unlink}{path} |
| 879 | Remove the file \var{path}. This is the same function as |
| 880 | \function{remove()}; the \function{unlink()} name is its traditional |
| 881 | \UNIX{} name. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 882 | Availability: Macintosh, \UNIX, Windows. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 883 | \end{funcdesc} |
| 884 | |
Barry Warsaw | 93a8eac | 2000-05-01 16:18:22 +0000 | [diff] [blame] | 885 | \begin{funcdesc}{utime}{path, times} |
| 886 | Set the access and modified times of the file specified by \var{path}. |
| 887 | If \var{times} is \code{None}, then the file's access and modified |
| 888 | times are set to the current time. Otherwise, \var{times} must be a |
Fred Drake | e06d025 | 2000-05-02 17:29:35 +0000 | [diff] [blame] | 889 | 2-tuple of numbers, of the form \code{(\var{atime}, \var{mtime})} |
| 890 | which is used to set the access and modified times, respectively. |
Fred Drake | 4a15263 | 2000-10-19 05:33:46 +0000 | [diff] [blame] | 891 | \versionchanged[Added support for \code{None} for \var{times}]{2.0} |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 892 | Availability: Macintosh, \UNIX, Windows. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 893 | \end{funcdesc} |
| 894 | |
| 895 | |
| 896 | \subsection{Process Management \label{os-process}} |
| 897 | |
Fred Drake | 18f7a45 | 1999-12-09 22:11:43 +0000 | [diff] [blame] | 898 | These functions may be used to create and manage processes. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 899 | |
Fred Drake | 7be3115 | 2000-09-23 05:22:07 +0000 | [diff] [blame] | 900 | The various \function{exec*()} functions take a list of arguments for |
| 901 | the new program loaded into the process. In each case, the first of |
| 902 | these arguments is passed to the new program as its own name rather |
| 903 | than as an argument a user may have typed on a command line. For the |
| 904 | C programmer, this is the \code{argv[0]} passed to a program's |
| 905 | \cfunction{main()}. For example, \samp{os.execv('/bin/echo', ['foo', |
| 906 | 'bar'])} will only print \samp{bar} on standard output; \samp{foo} |
| 907 | will seem to be ignored. |
| 908 | |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 909 | |
Fred Drake | 18f7a45 | 1999-12-09 22:11:43 +0000 | [diff] [blame] | 910 | \begin{funcdesc}{abort}{} |
| 911 | Generate a \constant{SIGABRT} signal to the current process. On |
Tim Peters | ab034fa | 2002-02-01 11:27:43 +0000 | [diff] [blame] | 912 | \UNIX, the default behavior is to produce a core dump; on Windows, the |
Fred Drake | 18f7a45 | 1999-12-09 22:11:43 +0000 | [diff] [blame] | 913 | process immediately returns an exit code of \code{3}. Be aware that |
| 914 | programs which use \function{signal.signal()} to register a handler |
| 915 | for \constant{SIGABRT} will behave differently. |
| 916 | Availability: \UNIX, Windows. |
| 917 | \end{funcdesc} |
| 918 | |
Fred Drake | db7287c | 2001-10-18 18:58:30 +0000 | [diff] [blame] | 919 | \begin{funcdesc}{execl}{path, arg0, arg1, \moreargs} |
| 920 | \funcline{execle}{path, arg0, arg1, \moreargs, env} |
| 921 | \funcline{execlp}{file, arg0, arg1, \moreargs} |
| 922 | \funcline{execlpe}{file, arg0, arg1, \moreargs, env} |
| 923 | \funcline{execv}{path, args} |
| 924 | \funcline{execve}{path, args, env} |
| 925 | \funcline{execvp}{file, args} |
| 926 | \funcline{execvpe}{file, args, env} |
| 927 | These functions all execute a new program, replacing the current |
| 928 | process; they do not return. On \UNIX, the new executable is loaded |
| 929 | into the current process, and will have the same process ID as the |
| 930 | caller. Errors will be reported as \exception{OSError} exceptions. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 931 | |
Fred Drake | db7287c | 2001-10-18 18:58:30 +0000 | [diff] [blame] | 932 | The \character{l} and \character{v} variants of the |
| 933 | \function{exec*()} functions differ in how command-line arguments are |
| 934 | passed. The \character{l} variants are perhaps the easiest to work |
| 935 | with if the number of parameters is fixed when the code is written; |
| 936 | the individual parameters simply become additional parameters to the |
| 937 | \function{execl*()} functions. The \character{v} variants are good |
| 938 | when the number of parameters is variable, with the arguments being |
| 939 | passed in a list or tuple as the \var{args} parameter. In either |
| 940 | case, the arguments to the child process must start with the name of |
| 941 | the command being run. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 942 | |
Fred Drake | db7287c | 2001-10-18 18:58:30 +0000 | [diff] [blame] | 943 | The variants which include a \character{p} near the end |
| 944 | (\function{execlp()}, \function{execlpe()}, \function{execvp()}, |
| 945 | and \function{execvpe()}) will use the \envvar{PATH} environment |
| 946 | variable to locate the program \var{file}. When the environment is |
| 947 | being replaced (using one of the \function{exec*e()} variants, |
| 948 | discussed in the next paragraph), the |
| 949 | new environment is used as the source of the \envvar{PATH} variable. |
| 950 | The other variants, \function{execl()}, \function{execle()}, |
| 951 | \function{execv()}, and \function{execve()}, will not use the |
| 952 | \envvar{PATH} variable to locate the executable; \var{path} must |
| 953 | contain an appropriate absolute or relative path. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 954 | |
Fred Drake | db7287c | 2001-10-18 18:58:30 +0000 | [diff] [blame] | 955 | For \function{execle()}, \function{execlpe()}, \function{execve()}, |
| 956 | and \function{execvpe()} (note that these all end in \character{e}), |
| 957 | the \var{env} parameter must be a mapping which is used to define the |
| 958 | environment variables for the new process; the \function{execl()}, |
| 959 | \function{execlp()}, \function{execv()}, and \function{execvp()} |
| 960 | all cause the new process to inherit the environment of the current |
| 961 | process. |
| 962 | Availability: \UNIX, Windows. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 963 | \end{funcdesc} |
| 964 | |
| 965 | \begin{funcdesc}{_exit}{n} |
| 966 | Exit to the system with status \var{n}, without calling cleanup |
| 967 | handlers, flushing stdio buffers, etc. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 968 | Availability: \UNIX, Windows. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 969 | |
| 970 | Note: the standard way to exit is \code{sys.exit(\var{n})}. |
| 971 | \function{_exit()} should normally only be used in the child process |
| 972 | after a \function{fork()}. |
| 973 | \end{funcdesc} |
| 974 | |
| 975 | \begin{funcdesc}{fork}{} |
| 976 | Fork a child process. Return \code{0} in the child, the child's |
| 977 | process id in the parent. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 978 | Availability: \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 979 | \end{funcdesc} |
| 980 | |
Fred Drake | c82634c | 2000-06-28 17:27:48 +0000 | [diff] [blame] | 981 | \begin{funcdesc}{forkpty}{} |
| 982 | Fork a child process, using a new pseudo-terminal as the child's |
| 983 | controlling terminal. Return a pair of \code{(\var{pid}, \var{fd})}, |
| 984 | where \var{pid} is \code{0} in the child, the new child's process id |
Fred Drake | 6995bb6 | 2001-11-29 20:48:44 +0000 | [diff] [blame] | 985 | in the parent, and \var{fd} is the file descriptor of the master end |
Fred Drake | c82634c | 2000-06-28 17:27:48 +0000 | [diff] [blame] | 986 | of the pseudo-terminal. For a more portable approach, use the |
| 987 | \refmodule{pty} module. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 988 | Availability: Some flavors of \UNIX. |
Fred Drake | c82634c | 2000-06-28 17:27:48 +0000 | [diff] [blame] | 989 | \end{funcdesc} |
| 990 | |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 991 | \begin{funcdesc}{kill}{pid, sig} |
| 992 | \index{process!killing} |
| 993 | \index{process!signalling} |
Fred Drake | 5c79831 | 2001-12-21 03:58:47 +0000 | [diff] [blame] | 994 | Kill the process \var{pid} with signal \var{sig}. Constants for the |
| 995 | specific signals available on the host platform are defined in the |
| 996 | \refmodule{signal} module. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 997 | Availability: \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 998 | \end{funcdesc} |
| 999 | |
| 1000 | \begin{funcdesc}{nice}{increment} |
| 1001 | Add \var{increment} to the process's ``niceness''. Return the new |
| 1002 | niceness. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 1003 | Availability: \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 1004 | \end{funcdesc} |
| 1005 | |
| 1006 | \begin{funcdesc}{plock}{op} |
| 1007 | Lock program segments into memory. The value of \var{op} |
| 1008 | (defined in \code{<sys/lock.h>}) determines which segments are locked. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 1009 | Availability: \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 1010 | \end{funcdesc} |
| 1011 | |
Fred Drake | 046f4d8 | 2001-06-11 15:21:48 +0000 | [diff] [blame] | 1012 | \begin{funcdescni}{popen}{\unspecified} |
| 1013 | \funclineni{popen2}{\unspecified} |
| 1014 | \funclineni{popen3}{\unspecified} |
| 1015 | \funclineni{popen4}{\unspecified} |
| 1016 | Run child processes, returning opened pipes for communications. These |
| 1017 | functions are described in section \ref{os-newstreams}. |
| 1018 | \end{funcdescni} |
| 1019 | |
Fred Drake | 739282d | 2001-08-16 21:21:28 +0000 | [diff] [blame] | 1020 | \begin{funcdesc}{spawnl}{mode, path, \moreargs} |
| 1021 | \funcline{spawnle}{mode, path, \moreargs, env} |
Fred Drake | db7287c | 2001-10-18 18:58:30 +0000 | [diff] [blame] | 1022 | \funcline{spawnlp}{mode, file, \moreargs} |
| 1023 | \funcline{spawnlpe}{mode, file, \moreargs, env} |
Fred Drake | 739282d | 2001-08-16 21:21:28 +0000 | [diff] [blame] | 1024 | \funcline{spawnv}{mode, path, args} |
| 1025 | \funcline{spawnve}{mode, path, args, env} |
Fred Drake | db7287c | 2001-10-18 18:58:30 +0000 | [diff] [blame] | 1026 | \funcline{spawnvp}{mode, file, args} |
| 1027 | \funcline{spawnvpe}{mode, file, args, env} |
Fred Drake | 739282d | 2001-08-16 21:21:28 +0000 | [diff] [blame] | 1028 | Execute the program \var{path} in a new process. If \var{mode} is |
| 1029 | \constant{P_NOWAIT}, this function returns the process ID of the new |
Tim Peters | b404145 | 2001-12-06 23:37:17 +0000 | [diff] [blame] | 1030 | process; if \var{mode} is \constant{P_WAIT}, returns the process's |
Fred Drake | 739282d | 2001-08-16 21:21:28 +0000 | [diff] [blame] | 1031 | exit code if it exits normally, or \code{-\var{signal}}, where |
| 1032 | \var{signal} is the signal that killed the process. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 1033 | |
Fred Drake | 739282d | 2001-08-16 21:21:28 +0000 | [diff] [blame] | 1034 | The \character{l} and \character{v} variants of the |
| 1035 | \function{spawn*()} functions differ in how command-line arguments are |
| 1036 | passed. The \character{l} variants are perhaps the easiest to work |
| 1037 | with if the number of parameters is fixed when the code is written; |
| 1038 | the individual parameters simply become additional parameters to the |
| 1039 | \function{spawnl*()} functions. The \character{v} variants are good |
| 1040 | when the number of parameters is variable, with the arguments being |
| 1041 | passed in a list or tuple as the \var{args} parameter. In either |
| 1042 | case, the arguments to the child process must start with the name of |
| 1043 | the command being run. |
| 1044 | |
Fred Drake | db7287c | 2001-10-18 18:58:30 +0000 | [diff] [blame] | 1045 | The variants which include a second \character{p} near the end |
| 1046 | (\function{spawnlp()}, \function{spawnlpe()}, \function{spawnvp()}, |
| 1047 | and \function{spawnvpe()}) will use the \envvar{PATH} environment |
| 1048 | variable to locate the program \var{file}. When the environment is |
| 1049 | being replaced (using one of the \function{spawn*e()} variants, |
| 1050 | discussed in the next paragraph), the new environment is used as the |
| 1051 | source of the \envvar{PATH} variable. The other variants, |
| 1052 | \function{spawnl()}, \function{spawnle()}, \function{spawnv()}, and |
| 1053 | \function{spawnve()}, will not use the \envvar{PATH} variable to |
| 1054 | locate the executable; \var{path} must contain an appropriate absolute |
| 1055 | or relative path. |
| 1056 | |
| 1057 | For \function{spawnle()}, \function{spawnlpe()}, \function{spawnve()}, |
| 1058 | and \function{spawnvpe()} (note that these all end in \character{e}), |
| 1059 | the \var{env} parameter must be a mapping which is used to define the |
| 1060 | environment variables for the new process; the \function{spawnl()}, |
| 1061 | \function{spawnlp()}, \function{spawnv()}, and \function{spawnvp()} |
| 1062 | all cause the new process to inherit the environment of the current |
| 1063 | process. |
| 1064 | |
Fred Drake | 739282d | 2001-08-16 21:21:28 +0000 | [diff] [blame] | 1065 | As an example, the following calls to \function{spawnlp()} and |
| 1066 | \function{spawnvpe()} are equivalent: |
| 1067 | |
| 1068 | \begin{verbatim} |
| 1069 | import os |
| 1070 | os.spawnlp(os.P_WAIT, 'cp', 'cp', 'index.html', '/dev/null') |
| 1071 | |
| 1072 | L = ['cp', 'index.html', '/dev/null'] |
| 1073 | os.spawnvpe(os.P_WAIT, 'cp', L, os.environ) |
| 1074 | \end{verbatim} |
| 1075 | |
Fred Drake | 8c8e871 | 2001-12-20 17:24:11 +0000 | [diff] [blame] | 1076 | Availability: \UNIX, Windows. \function{spawnlp()}, |
| 1077 | \function{spawnlpe()}, \function{spawnvp()} and \function{spawnvpe()} |
| 1078 | are not available on Windows. |
Fred Drake | 0b9bc20 | 2001-06-11 18:25:34 +0000 | [diff] [blame] | 1079 | \versionadded{1.6} |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 1080 | \end{funcdesc} |
| 1081 | |
Fred Drake | 938a8d7 | 2001-10-09 18:07:04 +0000 | [diff] [blame] | 1082 | \begin{datadesc}{P_NOWAIT} |
Fred Drake | 9329e5e | 1999-02-16 19:40:19 +0000 | [diff] [blame] | 1083 | \dataline{P_NOWAITO} |
Fred Drake | 938a8d7 | 2001-10-09 18:07:04 +0000 | [diff] [blame] | 1084 | Possible values for the \var{mode} parameter to the \function{spawn*()} |
| 1085 | family of functions. If either of these values is given, the |
| 1086 | \function{spawn*()} functions will return as soon as the new process |
| 1087 | has been created, with the process ID as the return value. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 1088 | Availability: \UNIX, Windows. |
Fred Drake | 0b9bc20 | 2001-06-11 18:25:34 +0000 | [diff] [blame] | 1089 | \versionadded{1.6} |
Fred Drake | 15861b2 | 2000-02-29 05:19:38 +0000 | [diff] [blame] | 1090 | \end{datadesc} |
| 1091 | |
Fred Drake | 938a8d7 | 2001-10-09 18:07:04 +0000 | [diff] [blame] | 1092 | \begin{datadesc}{P_WAIT} |
| 1093 | Possible value for the \var{mode} parameter to the \function{spawn*()} |
| 1094 | family of functions. If this is given as \var{mode}, the |
| 1095 | \function{spawn*()} functions will not return until the new process |
| 1096 | has run to completion and will return the exit code of the process the |
| 1097 | run is successful, or \code{-\var{signal}} if a signal kills the |
| 1098 | process. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 1099 | Availability: \UNIX, Windows. |
Fred Drake | 938a8d7 | 2001-10-09 18:07:04 +0000 | [diff] [blame] | 1100 | \versionadded{1.6} |
| 1101 | \end{datadesc} |
| 1102 | |
| 1103 | \begin{datadesc}{P_DETACH} |
| 1104 | \dataline{P_OVERLAY} |
| 1105 | Possible values for the \var{mode} parameter to the |
| 1106 | \function{spawn*()} family of functions. These are less portable than |
| 1107 | those listed above. |
| 1108 | \constant{P_DETACH} is similar to \constant{P_NOWAIT}, but the new |
| 1109 | process is detached from the console of the calling process. |
| 1110 | If \constant{P_OVERLAY} is used, the current process will be replaced; |
| 1111 | the \function{spawn*()} function will not return. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 1112 | Availability: Windows. |
Fred Drake | 0b9bc20 | 2001-06-11 18:25:34 +0000 | [diff] [blame] | 1113 | \versionadded{1.6} |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 1114 | \end{datadesc} |
| 1115 | |
Fred Drake | 4ce4f2e | 2000-09-29 04:15:19 +0000 | [diff] [blame] | 1116 | \begin{funcdesc}{startfile}{path} |
| 1117 | Start a file with its associated application. This acts like |
| 1118 | double-clicking the file in Windows Explorer, or giving the file name |
Fred Drake | 8ee679f | 2001-07-14 02:50:55 +0000 | [diff] [blame] | 1119 | as an argument to the \program{start} command from the interactive |
| 1120 | command shell: the file is opened with whatever application (if any) |
| 1121 | its extension is associated. |
Fred Drake | 4ce4f2e | 2000-09-29 04:15:19 +0000 | [diff] [blame] | 1122 | |
| 1123 | \function{startfile()} returns as soon as the associated application |
| 1124 | is launched. There is no option to wait for the application to close, |
| 1125 | and no way to retrieve the application's exit status. The \var{path} |
| 1126 | parameter is relative to the current directory. If you want to use an |
| 1127 | absolute path, make sure the first character is not a slash |
| 1128 | (\character{/}); the underlying Win32 \cfunction{ShellExecute()} |
Fred Drake | 8a2adcf | 2001-07-23 19:20:56 +0000 | [diff] [blame] | 1129 | function doesn't work if it is. Use the \function{os.path.normpath()} |
Fred Drake | 4ce4f2e | 2000-09-29 04:15:19 +0000 | [diff] [blame] | 1130 | function to ensure that the path is properly encoded for Win32. |
| 1131 | Availability: Windows. |
| 1132 | \versionadded{2.0} |
| 1133 | \end{funcdesc} |
| 1134 | |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 1135 | \begin{funcdesc}{system}{command} |
| 1136 | Execute the command (a string) in a subshell. This is implemented by |
| 1137 | calling the Standard C function \cfunction{system()}, and has the |
Fred Drake | ec6baaf | 1999-04-21 18:13:31 +0000 | [diff] [blame] | 1138 | same limitations. Changes to \code{posix.environ}, \code{sys.stdin}, |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 1139 | etc.\ are not reflected in the environment of the executed command. |
| 1140 | The return value is the exit status of the process encoded in the |
Fred Drake | 7a62128 | 1999-06-10 15:07:05 +0000 | [diff] [blame] | 1141 | format specified for \function{wait()}, except on Windows 95 and 98, |
Fred Drake | a88ef00 | 1999-06-18 19:11:25 +0000 | [diff] [blame] | 1142 | where it is always \code{0}. Note that \POSIX{} does not specify the |
| 1143 | meaning of the return value of the C \cfunction{system()} function, |
| 1144 | so the return value of the Python function is system-dependent. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 1145 | Availability: \UNIX, Windows. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 1146 | \end{funcdesc} |
| 1147 | |
| 1148 | \begin{funcdesc}{times}{} |
Fred Drake | 8ee679f | 2001-07-14 02:50:55 +0000 | [diff] [blame] | 1149 | Return a 5-tuple of floating point numbers indicating accumulated |
| 1150 | (processor or other) |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 1151 | times, in seconds. The items are: user time, system time, children's |
| 1152 | user time, children's system time, and elapsed real time since a fixed |
Fred Drake | ec6baaf | 1999-04-21 18:13:31 +0000 | [diff] [blame] | 1153 | point in the past, in that order. See the \UNIX{} manual page |
| 1154 | \manpage{times}{2} or the corresponding Windows Platform API |
| 1155 | documentation. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 1156 | Availability: \UNIX, Windows. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 1157 | \end{funcdesc} |
| 1158 | |
| 1159 | \begin{funcdesc}{wait}{} |
| 1160 | Wait for completion of a child process, and return a tuple containing |
| 1161 | its pid and exit status indication: a 16-bit number, whose low byte is |
| 1162 | the signal number that killed the process, and whose high byte is the |
| 1163 | exit status (if the signal number is zero); the high bit of the low |
| 1164 | byte is set if a core file was produced. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 1165 | Availability: \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 1166 | \end{funcdesc} |
| 1167 | |
| 1168 | \begin{funcdesc}{waitpid}{pid, options} |
Tim Peters | ab034fa | 2002-02-01 11:27:43 +0000 | [diff] [blame] | 1169 | The details of this function differ on \UNIX and Windows. |
| 1170 | |
| 1171 | On \UNIX: |
Fred Drake | 31e5e37 | 1999-08-13 13:36:33 +0000 | [diff] [blame] | 1172 | Wait for completion of a child process given by process id \var{pid}, |
| 1173 | and return a tuple containing its process id and exit status |
| 1174 | indication (encoded as for \function{wait()}). The semantics of the |
| 1175 | call are affected by the value of the integer \var{options}, which |
| 1176 | should be \code{0} for normal operation. |
Fred Drake | 31e5e37 | 1999-08-13 13:36:33 +0000 | [diff] [blame] | 1177 | |
| 1178 | If \var{pid} is greater than \code{0}, \function{waitpid()} requests |
| 1179 | status information for that specific process. If \var{pid} is |
| 1180 | \code{0}, the request is for the status of any child in the process |
| 1181 | group of the current process. If \var{pid} is \code{-1}, the request |
| 1182 | pertains to any child of the current process. If \var{pid} is less |
| 1183 | than \code{-1}, status is requested for any process in the process |
| 1184 | group \code{-\var{pid}} (the absolute value of \var{pid}). |
Tim Peters | ab034fa | 2002-02-01 11:27:43 +0000 | [diff] [blame] | 1185 | |
| 1186 | On Windows: |
| 1187 | Wait for completion of a process given by process id \var{pid}, |
| 1188 | and return a tuple containing \var{pid}, |
| 1189 | and its exit status shifted left by 8 bits (shifting makes cross-platform |
| 1190 | use of the function easier). |
| 1191 | A \var{pid} less than or equal to \code{0} has no special meaning on |
| 1192 | Windows, and raises an exception. |
| 1193 | The value of integer \var{options} has no effect. |
| 1194 | \var{pid} can refer to any process whose id is known, not necessarily a |
| 1195 | child process. |
| 1196 | The \function{spawn()} functions called with \constant{P_NOWAIT} |
| 1197 | return suitable process ids. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 1198 | \end{funcdesc} |
| 1199 | |
| 1200 | \begin{datadesc}{WNOHANG} |
| 1201 | The option for \function{waitpid()} to avoid hanging if no child |
| 1202 | process status is available immediately. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 1203 | Availability: \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 1204 | \end{datadesc} |
| 1205 | |
Fred Drake | 38e5d27 | 2000-04-03 20:13:55 +0000 | [diff] [blame] | 1206 | The following functions take a process status code as returned by |
| 1207 | \function{system()}, \function{wait()}, or \function{waitpid()} as a |
| 1208 | parameter. They may be used to determine the disposition of a |
| 1209 | process. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 1210 | |
| 1211 | \begin{funcdesc}{WIFSTOPPED}{status} |
| 1212 | Return true if the process has been stopped. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 1213 | Availability: \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 1214 | \end{funcdesc} |
| 1215 | |
| 1216 | \begin{funcdesc}{WIFSIGNALED}{status} |
| 1217 | Return true if the process exited due to a signal. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 1218 | Availability: \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 1219 | \end{funcdesc} |
| 1220 | |
| 1221 | \begin{funcdesc}{WIFEXITED}{status} |
| 1222 | Return true if the process exited using the \manpage{exit}{2} system |
| 1223 | call. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 1224 | Availability: \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 1225 | \end{funcdesc} |
| 1226 | |
| 1227 | \begin{funcdesc}{WEXITSTATUS}{status} |
| 1228 | If \code{WIFEXITED(\var{status})} is true, return the integer |
Tim Peters | ab034fa | 2002-02-01 11:27:43 +0000 | [diff] [blame] | 1229 | parameter to the \manpage{exit}{2} system call. Otherwise, the return |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 1230 | value is meaningless. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 1231 | Availability: \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 1232 | \end{funcdesc} |
| 1233 | |
| 1234 | \begin{funcdesc}{WSTOPSIG}{status} |
Fred Drake | 35c3ffd | 1999-03-04 14:08:10 +0000 | [diff] [blame] | 1235 | Return the signal which caused the process to stop. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 1236 | Availability: \UNIX. |
Fred Drake | 35c3ffd | 1999-03-04 14:08:10 +0000 | [diff] [blame] | 1237 | \end{funcdesc} |
| 1238 | |
| 1239 | \begin{funcdesc}{WTERMSIG}{status} |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 1240 | Return the signal which caused the process to exit. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 1241 | Availability: \UNIX. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 1242 | \end{funcdesc} |
| 1243 | |
| 1244 | |
Thomas Wouters | f831663 | 2000-07-16 19:01:10 +0000 | [diff] [blame] | 1245 | \subsection{Miscellaneous System Information \label{os-path}} |
Fred Drake | 88f6ca2 | 1999-12-15 19:39:04 +0000 | [diff] [blame] | 1246 | |
| 1247 | |
| 1248 | \begin{funcdesc}{confstr}{name} |
| 1249 | Return string-valued system configuration values. |
| 1250 | \var{name} specifies the configuration value to retrieve; it may be a |
| 1251 | string which is the name of a defined system value; these names are |
Fred Drake | 8ee679f | 2001-07-14 02:50:55 +0000 | [diff] [blame] | 1252 | specified in a number of standards (\POSIX, \UNIX 95, \UNIX 98, and |
Fred Drake | 88f6ca2 | 1999-12-15 19:39:04 +0000 | [diff] [blame] | 1253 | others). Some platforms define additional names as well. The names |
| 1254 | known to the host operating system are given in the |
| 1255 | \code{confstr_names} dictionary. For configuration variables not |
| 1256 | included in that mapping, passing an integer for \var{name} is also |
| 1257 | accepted. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 1258 | Availability: \UNIX. |
Fred Drake | 88f6ca2 | 1999-12-15 19:39:04 +0000 | [diff] [blame] | 1259 | |
| 1260 | If the configuration value specified by \var{name} isn't defined, the |
| 1261 | empty string is returned. |
| 1262 | |
| 1263 | If \var{name} is a string and is not known, \exception{ValueError} is |
| 1264 | raised. If a specific value for \var{name} is not supported by the |
| 1265 | host system, even if it is included in \code{confstr_names}, an |
| 1266 | \exception{OSError} is raised with \constant{errno.EINVAL} for the |
| 1267 | error number. |
| 1268 | \end{funcdesc} |
| 1269 | |
| 1270 | \begin{datadesc}{confstr_names} |
| 1271 | Dictionary mapping names accepted by \function{confstr()} to the |
| 1272 | integer values defined for those names by the host operating system. |
| 1273 | This can be used to determine the set of names known to the system. |
| 1274 | Availability: \UNIX. |
| 1275 | \end{datadesc} |
| 1276 | |
| 1277 | \begin{funcdesc}{sysconf}{name} |
| 1278 | Return integer-valued system configuration values. |
| 1279 | If the configuration value specified by \var{name} isn't defined, |
| 1280 | \code{-1} is returned. The comments regarding the \var{name} |
| 1281 | parameter for \function{confstr()} apply here as well; the dictionary |
| 1282 | that provides information on the known names is given by |
| 1283 | \code{sysconf_names}. |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 1284 | Availability: \UNIX. |
Fred Drake | 88f6ca2 | 1999-12-15 19:39:04 +0000 | [diff] [blame] | 1285 | \end{funcdesc} |
| 1286 | |
| 1287 | \begin{datadesc}{sysconf_names} |
| 1288 | Dictionary mapping names accepted by \function{sysconf()} to the |
| 1289 | integer values defined for those names by the host operating system. |
| 1290 | This can be used to determine the set of names known to the system. |
| 1291 | Availability: \UNIX. |
| 1292 | \end{datadesc} |
| 1293 | |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 1294 | |
| 1295 | The follow data values are used to support path manipulation |
| 1296 | operations. These are defined for all platforms. |
| 1297 | |
| 1298 | Higher-level operations on pathnames are defined in the |
| 1299 | \refmodule{os.path} module. |
| 1300 | |
| 1301 | |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 1302 | \begin{datadesc}{curdir} |
Fred Drake | 8ee679f | 2001-07-14 02:50:55 +0000 | [diff] [blame] | 1303 | The constant string used by the operating system to refer to the current |
| 1304 | directory. |
Fred Drake | 907e76b | 2001-07-06 20:30:11 +0000 | [diff] [blame] | 1305 | For example: \code{'.'} for \POSIX{} or \code{':'} for the Macintosh. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 1306 | \end{datadesc} |
| 1307 | |
| 1308 | \begin{datadesc}{pardir} |
Fred Drake | 8ee679f | 2001-07-14 02:50:55 +0000 | [diff] [blame] | 1309 | The constant string used by the operating system to refer to the parent |
| 1310 | directory. |
Fred Drake | 907e76b | 2001-07-06 20:30:11 +0000 | [diff] [blame] | 1311 | For example: \code{'..'} for \POSIX{} or \code{'::'} for the Macintosh. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 1312 | \end{datadesc} |
| 1313 | |
| 1314 | \begin{datadesc}{sep} |
Fred Drake | 8ee679f | 2001-07-14 02:50:55 +0000 | [diff] [blame] | 1315 | The character used by the operating system to separate pathname components, |
Fred Drake | 907e76b | 2001-07-06 20:30:11 +0000 | [diff] [blame] | 1316 | for example, \character{/} for \POSIX{} or \character{:} for the |
| 1317 | Macintosh. Note that knowing this is not sufficient to be able to |
| 1318 | parse or concatenate pathnames --- use \function{os.path.split()} and |
Fred Drake | 1a3c2a0 | 1998-08-06 15:18:23 +0000 | [diff] [blame] | 1319 | \function{os.path.join()} --- but it is occasionally useful. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 1320 | \end{datadesc} |
| 1321 | |
Guido van Rossum | b2afc81 | 1997-08-29 22:37:44 +0000 | [diff] [blame] | 1322 | \begin{datadesc}{altsep} |
Fred Drake | 8ee679f | 2001-07-14 02:50:55 +0000 | [diff] [blame] | 1323 | An alternative character used by the operating system to separate pathname |
| 1324 | components, or \code{None} if only one separator character exists. This is |
| 1325 | set to \character{/} on DOS and Windows systems where \code{sep} is a |
| 1326 | backslash. |
Guido van Rossum | b2afc81 | 1997-08-29 22:37:44 +0000 | [diff] [blame] | 1327 | \end{datadesc} |
| 1328 | |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 1329 | \begin{datadesc}{pathsep} |
Fred Drake | 8ee679f | 2001-07-14 02:50:55 +0000 | [diff] [blame] | 1330 | The character conventionally used by the operating system to separate |
| 1331 | search patch components (as in \envvar{PATH}), such as \character{:} for |
| 1332 | \POSIX{} or \character{;} for DOS and Windows. |
Guido van Rossum | 9c59ce9 | 1998-06-30 15:54:27 +0000 | [diff] [blame] | 1333 | \end{datadesc} |
| 1334 | |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 1335 | \begin{datadesc}{defpath} |
Fred Drake | 6995bb6 | 2001-11-29 20:48:44 +0000 | [diff] [blame] | 1336 | The default search path used by \function{exec*p*()} and |
| 1337 | \function{spawn*p*()} if the environment doesn't have a \code{'PATH'} |
| 1338 | key. |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 1339 | \end{datadesc} |
| 1340 | |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 1341 | \begin{datadesc}{linesep} |
| 1342 | The string used to separate (or, rather, terminate) lines on the |
Fred Drake | 907e76b | 2001-07-06 20:30:11 +0000 | [diff] [blame] | 1343 | current platform. This may be a single character, such as \code{'\e |
Fred Drake | 6995bb6 | 2001-11-29 20:48:44 +0000 | [diff] [blame] | 1344 | n'} for \POSIX{} or \code{'\e r'} for Mac OS, or multiple characters, |
Fred Drake | 8ee679f | 2001-07-14 02:50:55 +0000 | [diff] [blame] | 1345 | for example, \code{'\e r\e n'} for DOS and Windows. |
Fred Drake | 215fe2f | 1999-02-02 19:02:35 +0000 | [diff] [blame] | 1346 | \end{datadesc} |