blob: 6b3a3b64915ad93fd486f8b25e29801e5d2ac4a3 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001:mod:`os.path` --- Common pathname manipulations
2================================================
3
4.. module:: os.path
5 :synopsis: Operations on pathnames.
6
Georg Brandl116aa622007-08-15 14:28:22 +00007.. index:: single: path; operations
8
9This module implements some useful functions on pathnames. To read or
10write files see :func:`open`, and for accessing the filesystem see the
Martin v. Löwis651423c2008-10-07 07:03:04 +000011:mod:`os` module. The path parameters can be passed as either strings,
12or bytes. Applications are encouraged to represent file names as
13(Unicode) character strings. Unfortunately, some file names may not be
14representable as strings on Unix, so applications that need to support
15arbitrary file names on Unix should use bytes objects to represent
16path names. Vice versa, using bytes objects cannot represent all file
17names on Windows (in the standard ``mbcs`` encoding), hence Windows
18applications should use string objects to access all files.
Georg Brandl116aa622007-08-15 14:28:22 +000019
R David Murraya4e700c2013-01-06 16:13:10 -050020Unlike a unix shell, Python does not do any *automatic* path expansions.
21Functions such as :func:`expanduser` and :func:`expandvars` can be invoked
22explicitly when an application desires shell-like path expansion. (See also
23the :mod:`glob` module.)
24
Antoine Pitrou31119e42013-11-22 17:38:12 +010025
26.. seealso::
27 The :mod:`pathlib` module offers high-level path objects.
28
29
Georg Brandl76e55382008-10-08 16:34:57 +000030.. note::
31
32 All of these functions accept either only bytes or only string objects as
33 their parameters. The result is an object of the same type, if a path or
34 file name is returned.
35
Georg Brandl116aa622007-08-15 14:28:22 +000036
Benjamin Petersond23f8222009-04-05 19:13:16 +000037.. note::
38
39 Since different operating systems have different path name conventions, there
40 are several versions of this module in the standard library. The
41 :mod:`os.path` module is always the path module suitable for the operating
42 system Python is running on, and therefore usable for local paths. However,
43 you can also import and use the individual modules if you want to manipulate
44 a path that is *always* in one of the different formats. They all have the
45 same interface:
46
47 * :mod:`posixpath` for UNIX-style paths
48 * :mod:`ntpath` for Windows paths
49 * :mod:`macpath` for old-style MacOS paths
Benjamin Petersond23f8222009-04-05 19:13:16 +000050
51
Georg Brandl116aa622007-08-15 14:28:22 +000052.. function:: abspath(path)
53
54 Return a normalized absolutized version of the pathname *path*. On most
Chris Jerdonek0b502ff2012-11-25 20:38:01 -080055 platforms, this is equivalent to calling the function :func:`normpath` as
56 follows: ``normpath(join(os.getcwd(), path))``.
Georg Brandl116aa622007-08-15 14:28:22 +000057
Georg Brandl116aa622007-08-15 14:28:22 +000058
59.. function:: basename(path)
60
Chris Jerdonek0b502ff2012-11-25 20:38:01 -080061 Return the base name of pathname *path*. This is the second element of the
62 pair returned by passing *path* to the function :func:`split`. Note that
63 the result of this function is different
Georg Brandl116aa622007-08-15 14:28:22 +000064 from the Unix :program:`basename` program; where :program:`basename` for
65 ``'/foo/bar/'`` returns ``'bar'``, the :func:`basename` function returns an
66 empty string (``''``).
67
68
69.. function:: commonprefix(list)
70
71 Return the longest path prefix (taken character-by-character) that is a prefix
72 of all paths in *list*. If *list* is empty, return the empty string (``''``).
73 Note that this may return invalid paths because it works a character at a time.
74
75
76.. function:: dirname(path)
77
Chris Jerdonek0b502ff2012-11-25 20:38:01 -080078 Return the directory name of pathname *path*. This is the first element of
79 the pair returned by passing *path* to the function :func:`split`.
Georg Brandl116aa622007-08-15 14:28:22 +000080
81
82.. function:: exists(path)
83
Richard Oudkerk2240ac12012-07-06 12:05:32 +010084 Return ``True`` if *path* refers to an existing path or an open
85 file descriptor. Returns ``False`` for broken symbolic links. On
86 some platforms, this function may return ``False`` if permission is
87 not granted to execute :func:`os.stat` on the requested file, even
Georg Brandl116aa622007-08-15 14:28:22 +000088 if the *path* physically exists.
89
Richard Oudkerk2240ac12012-07-06 12:05:32 +010090 .. versionchanged:: 3.3
91 *path* can now be an integer: ``True`` is returned if it is an
92 open file descriptor, ``False`` otherwise.
93
Georg Brandl116aa622007-08-15 14:28:22 +000094
95.. function:: lexists(path)
96
97 Return ``True`` if *path* refers to an existing path. Returns ``True`` for
98 broken symbolic links. Equivalent to :func:`exists` on platforms lacking
99 :func:`os.lstat`.
100
Georg Brandl116aa622007-08-15 14:28:22 +0000101
102.. function:: expanduser(path)
103
104 On Unix and Windows, return the argument with an initial component of ``~`` or
105 ``~user`` replaced by that *user*'s home directory.
106
107 .. index:: module: pwd
108
109 On Unix, an initial ``~`` is replaced by the environment variable :envvar:`HOME`
110 if it is set; otherwise the current user's home directory is looked up in the
111 password directory through the built-in module :mod:`pwd`. An initial ``~user``
112 is looked up directly in the password directory.
113
114 On Windows, :envvar:`HOME` and :envvar:`USERPROFILE` will be used if set,
115 otherwise a combination of :envvar:`HOMEPATH` and :envvar:`HOMEDRIVE` will be
116 used. An initial ``~user`` is handled by stripping the last directory component
117 from the created user path derived above.
118
119 If the expansion fails or if the path does not begin with a tilde, the path is
120 returned unchanged.
121
122
123.. function:: expandvars(path)
124
125 Return the argument with environment variables expanded. Substrings of the form
126 ``$name`` or ``${name}`` are replaced by the value of environment variable
127 *name*. Malformed variable names and references to non-existing variables are
128 left unchanged.
129
130 On Windows, ``%name%`` expansions are supported in addition to ``$name`` and
131 ``${name}``.
132
133
134.. function:: getatime(path)
135
136 Return the time of last access of *path*. The return value is a number giving
137 the number of seconds since the epoch (see the :mod:`time` module). Raise
Andrew Svetlov618c2e12012-12-15 22:59:24 +0200138 :exc:`OSError` if the file does not exist or is inaccessible.
Georg Brandl116aa622007-08-15 14:28:22 +0000139
Serhiy Storchakafbc1c262013-11-29 12:17:13 +0200140 If :func:`os.stat_float_times` returns ``True``, the result is a floating point
Georg Brandl55ac8f02007-09-01 13:51:09 +0000141 number.
Georg Brandl116aa622007-08-15 14:28:22 +0000142
143
144.. function:: getmtime(path)
145
146 Return the time of last modification of *path*. The return value is a number
147 giving the number of seconds since the epoch (see the :mod:`time` module).
Andrew Svetlov618c2e12012-12-15 22:59:24 +0200148 Raise :exc:`OSError` if the file does not exist or is inaccessible.
Georg Brandl116aa622007-08-15 14:28:22 +0000149
Serhiy Storchakafbc1c262013-11-29 12:17:13 +0200150 If :func:`os.stat_float_times` returns ``True``, the result is a floating point
Georg Brandl55ac8f02007-09-01 13:51:09 +0000151 number.
Georg Brandl116aa622007-08-15 14:28:22 +0000152
153
154.. function:: getctime(path)
155
156 Return the system's ctime which, on some systems (like Unix) is the time of the
Georg Brandlf6324942013-10-06 09:52:55 +0200157 last metadata change, and, on others (like Windows), is the creation time for *path*.
Georg Brandl116aa622007-08-15 14:28:22 +0000158 The return value is a number giving the number of seconds since the epoch (see
Andrew Svetlov618c2e12012-12-15 22:59:24 +0200159 the :mod:`time` module). Raise :exc:`OSError` if the file does not exist or
Georg Brandl116aa622007-08-15 14:28:22 +0000160 is inaccessible.
161
Georg Brandl116aa622007-08-15 14:28:22 +0000162
163.. function:: getsize(path)
164
Andrew Svetlov618c2e12012-12-15 22:59:24 +0200165 Return the size, in bytes, of *path*. Raise :exc:`OSError` if the file does
Georg Brandl116aa622007-08-15 14:28:22 +0000166 not exist or is inaccessible.
167
Georg Brandl116aa622007-08-15 14:28:22 +0000168
169.. function:: isabs(path)
170
Christian Heimesaf98da12008-01-27 15:18:18 +0000171 Return ``True`` if *path* is an absolute pathname. On Unix, that means it
172 begins with a slash, on Windows that it begins with a (back)slash after chopping
173 off a potential drive letter.
Georg Brandl116aa622007-08-15 14:28:22 +0000174
175
176.. function:: isfile(path)
177
178 Return ``True`` if *path* is an existing regular file. This follows symbolic
179 links, so both :func:`islink` and :func:`isfile` can be true for the same path.
180
181
182.. function:: isdir(path)
183
184 Return ``True`` if *path* is an existing directory. This follows symbolic
185 links, so both :func:`islink` and :func:`isdir` can be true for the same path.
186
187
188.. function:: islink(path)
189
190 Return ``True`` if *path* refers to a directory entry that is a symbolic link.
191 Always ``False`` if symbolic links are not supported.
192
193
194.. function:: ismount(path)
195
Larry Hastings3732ed22014-03-15 21:13:56 -0700196 Return ``True`` if pathname *path* is a :dfn:`mount point`: a point in a
197 file system where a different file system has been mounted. On POSIX, the
198 function checks whether *path*'s parent, :file:`path/..`, is on a different
199 device than *path*, or whether :file:`path/..` and *path* point to the same
200 i-node on the same device --- this should detect mount points for all Unix
201 and POSIX variants. On Windows, a drive letter root and a share UNC are
202 always mount points, and for any other path ``GetVolumePathName`` is called
203 to see if it is different from the input path.
204
205 .. versionadded:: 3.4
206 Support for detecting non-root mount points on Windows.
Georg Brandl116aa622007-08-15 14:28:22 +0000207
208
209.. function:: join(path1[, path2[, ...]])
210
211 Join one or more path components intelligently. If any component is an absolute
212 path, all previous components (on Windows, including the previous drive letter,
213 if there was one) are thrown away, and joining continues. The return value is
214 the concatenation of *path1*, and optionally *path2*, etc., with exactly one
R David Murray24eb4bc2011-06-23 21:26:13 -0400215 directory separator (``os.sep``) following each non-empty part except the last.
216 (This means that an empty last part will result in a path that ends with a
217 separator.) Note that on Windows, since there is a current directory for
218 each drive, ``os.path.join("c:", "foo")`` represents a path relative to the
219 current directory on drive :file:`C:` (:file:`c:foo`), not :file:`c:\\foo`.
Georg Brandl116aa622007-08-15 14:28:22 +0000220
221
222.. function:: normcase(path)
223
Benjamin Petersond23f8222009-04-05 19:13:16 +0000224 Normalize the case of a pathname. On Unix and Mac OS X, this returns the
225 path unchanged; on case-insensitive filesystems, it converts the path to
226 lowercase. On Windows, it also converts forward slashes to backward slashes.
Ezio Melotti5a3ef5b2010-06-25 10:56:11 +0000227 Raise a TypeError if the type of *path* is not ``str`` or ``bytes``.
Georg Brandl116aa622007-08-15 14:28:22 +0000228
229
230.. function:: normpath(path)
231
Terry Jan Reedyec6e1322013-03-17 15:21:26 -0400232 Normalize a pathname by collapsing redundant separators and up-level
233 references so that ``A//B``, ``A/B/``, ``A/./B`` and ``A/foo/../B`` all
234 become ``A/B``. This string manipulation may change the meaning of a path
235 that contains symbolic links. On Windows, it converts forward slashes to
Terry Jan Reedyf3460412013-03-17 15:28:10 -0400236 backward slashes. To normalize case, use :func:`normcase`.
Georg Brandl116aa622007-08-15 14:28:22 +0000237
238
239.. function:: realpath(path)
240
241 Return the canonical path of the specified filename, eliminating any symbolic
242 links encountered in the path (if they are supported by the operating system).
243
Georg Brandl116aa622007-08-15 14:28:22 +0000244
Benjamin Peterson409a1be2014-03-20 12:39:53 -0500245.. function:: relpath(path, start=os.curdir)
Georg Brandl116aa622007-08-15 14:28:22 +0000246
R David Murrayce10fab2013-07-12 17:43:11 -0400247 Return a relative filepath to *path* either from the current directory or
248 from an optional *start* directory. This is a path computation: the
249 filesystem is not accessed to confirm the existence or nature of *path* or
250 *start*.
Georg Brandl116aa622007-08-15 14:28:22 +0000251
Benjamin Petersonf650e462010-05-06 23:03:05 +0000252 *start* defaults to :attr:`os.curdir`.
253
Antoine Pitrouf10f1622010-12-12 20:17:29 +0000254 Availability: Unix, Windows.
Georg Brandl116aa622007-08-15 14:28:22 +0000255
Georg Brandl116aa622007-08-15 14:28:22 +0000256
257.. function:: samefile(path1, path2)
258
Brian Curtind40e6f72010-07-08 21:39:08 +0000259 Return ``True`` if both pathname arguments refer to the same file or directory.
Larry Hastings3732ed22014-03-15 21:13:56 -0700260 This is determined by the device number and i-node number and raises an
Brian Curtind40e6f72010-07-08 21:39:08 +0000261 exception if a :func:`os.stat` call on either pathname fails.
Benjamin Petersonf650e462010-05-06 23:03:05 +0000262
Antoine Pitrouf10f1622010-12-12 20:17:29 +0000263 Availability: Unix, Windows.
Georg Brandl116aa622007-08-15 14:28:22 +0000264
Georg Brandlb3823372010-07-10 08:58:37 +0000265 .. versionchanged:: 3.2
266 Added Windows support.
Brian Curtinc7395692010-07-09 15:15:09 +0000267
Brian Curtin490b32a2012-12-26 07:03:03 -0600268 .. versionchanged:: 3.4
269 Windows now uses the same implementation as all other platforms.
270
Georg Brandl116aa622007-08-15 14:28:22 +0000271
272.. function:: sameopenfile(fp1, fp2)
273
274 Return ``True`` if the file descriptors *fp1* and *fp2* refer to the same file.
Benjamin Petersonf650e462010-05-06 23:03:05 +0000275
Brian Curtin62857742010-09-06 17:07:27 +0000276 Availability: Unix, Windows.
277
Georg Brandl61063cc2012-06-24 22:48:30 +0200278 .. versionchanged:: 3.2
279 Added Windows support.
Georg Brandl116aa622007-08-15 14:28:22 +0000280
281
282.. function:: samestat(stat1, stat2)
283
284 Return ``True`` if the stat tuples *stat1* and *stat2* refer to the same file.
Serhiy Storchakadab83542013-10-13 20:12:43 +0300285 These structures may have been returned by :func:`os.fstat`,
286 :func:`os.lstat`, or :func:`os.stat`. This function implements the
287 underlying comparison used by :func:`samefile` and :func:`sameopenfile`.
Benjamin Petersonf650e462010-05-06 23:03:05 +0000288
Brian Curtin490b32a2012-12-26 07:03:03 -0600289 Availability: Unix, Windows.
290
291 .. versionchanged:: 3.4
292 Added Windows support.
Georg Brandl116aa622007-08-15 14:28:22 +0000293
294
295.. function:: split(path)
296
Georg Brandl539c1652010-10-14 06:46:08 +0000297 Split the pathname *path* into a pair, ``(head, tail)`` where *tail* is the
298 last pathname component and *head* is everything leading up to that. The
299 *tail* part will never contain a slash; if *path* ends in a slash, *tail*
300 will be empty. If there is no slash in *path*, *head* will be empty. If
301 *path* is empty, both *head* and *tail* are empty. Trailing slashes are
302 stripped from *head* unless it is the root (one or more slashes only). In
303 all cases, ``join(head, tail)`` returns a path to the same location as *path*
Chris Jerdonek0b502ff2012-11-25 20:38:01 -0800304 (but the strings may differ). Also see the functions :func:`dirname` and
305 :func:`basename`.
Georg Brandl116aa622007-08-15 14:28:22 +0000306
307
308.. function:: splitdrive(path)
309
310 Split the pathname *path* into a pair ``(drive, tail)`` where *drive* is either
Mark Hammond5a607a32009-05-06 08:04:54 +0000311 a mount point or the empty string. On systems which do not use drive
Georg Brandl116aa622007-08-15 14:28:22 +0000312 specifications, *drive* will always be the empty string. In all cases, ``drive
313 + tail`` will be the same as *path*.
314
Mark Hammond5a607a32009-05-06 08:04:54 +0000315 On Windows, splits a pathname into drive/UNC sharepoint and relative path.
316
317 If the path contains a drive letter, drive will contain everything
318 up to and including the colon.
319 e.g. ``splitdrive("c:/dir")`` returns ``("c:", "/dir")``
320
321 If the path contains a UNC path, drive will contain the host name
322 and share, up to but not including the fourth separator.
323 e.g. ``splitdrive("//host/computer/dir")`` returns ``("//host/computer", "/dir")``
324
Georg Brandl116aa622007-08-15 14:28:22 +0000325
326.. function:: splitext(path)
327
328 Split the pathname *path* into a pair ``(root, ext)`` such that ``root + ext ==
329 path``, and *ext* is empty or begins with a period and contains at most one
330 period. Leading periods on the basename are ignored; ``splitext('.cshrc')``
331 returns ``('.cshrc', '')``.
332
Georg Brandl116aa622007-08-15 14:28:22 +0000333
334.. function:: splitunc(path)
335
Mark Hammond5a607a32009-05-06 08:04:54 +0000336 .. deprecated:: 3.1
337 Use *splitdrive* instead.
338
Georg Brandl116aa622007-08-15 14:28:22 +0000339 Split the pathname *path* into a pair ``(unc, rest)`` so that *unc* is the UNC
340 mount point (such as ``r'\\host\mount'``), if present, and *rest* the rest of
341 the path (such as ``r'\path\file.ext'``). For paths containing drive letters,
Benjamin Petersonf650e462010-05-06 23:03:05 +0000342 *unc* will always be the empty string.
343
344 Availability: Windows.
Georg Brandl116aa622007-08-15 14:28:22 +0000345
346
Georg Brandl116aa622007-08-15 14:28:22 +0000347.. data:: supports_unicode_filenames
348
Serhiy Storchakafbc1c262013-11-29 12:17:13 +0200349 ``True`` if arbitrary Unicode strings can be used as file names (within limitations
Victor Stinnerb55e4982010-09-11 00:22:12 +0000350 imposed by the file system).