blob: d9b7138aa74d193fb3402dea282b2c5053252272 [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
Georg Brandl76e55382008-10-08 16:34:57 +000020.. note::
21
22 All of these functions accept either only bytes or only string objects as
23 their parameters. The result is an object of the same type, if a path or
24 file name is returned.
25
Georg Brandl116aa622007-08-15 14:28:22 +000026
Benjamin Petersond23f8222009-04-05 19:13:16 +000027.. note::
28
29 Since different operating systems have different path name conventions, there
30 are several versions of this module in the standard library. The
31 :mod:`os.path` module is always the path module suitable for the operating
32 system Python is running on, and therefore usable for local paths. However,
33 you can also import and use the individual modules if you want to manipulate
34 a path that is *always* in one of the different formats. They all have the
35 same interface:
36
37 * :mod:`posixpath` for UNIX-style paths
38 * :mod:`ntpath` for Windows paths
39 * :mod:`macpath` for old-style MacOS paths
Benjamin Petersond23f8222009-04-05 19:13:16 +000040
41
Georg Brandl116aa622007-08-15 14:28:22 +000042.. function:: abspath(path)
43
44 Return a normalized absolutized version of the pathname *path*. On most
Chris Jerdonek0b502ff2012-11-25 20:38:01 -080045 platforms, this is equivalent to calling the function :func:`normpath` as
46 follows: ``normpath(join(os.getcwd(), path))``.
Georg Brandl116aa622007-08-15 14:28:22 +000047
Georg Brandl116aa622007-08-15 14:28:22 +000048
49.. function:: basename(path)
50
Chris Jerdonek0b502ff2012-11-25 20:38:01 -080051 Return the base name of pathname *path*. This is the second element of the
52 pair returned by passing *path* to the function :func:`split`. Note that
53 the result of this function is different
Georg Brandl116aa622007-08-15 14:28:22 +000054 from the Unix :program:`basename` program; where :program:`basename` for
55 ``'/foo/bar/'`` returns ``'bar'``, the :func:`basename` function returns an
56 empty string (``''``).
57
58
59.. function:: commonprefix(list)
60
61 Return the longest path prefix (taken character-by-character) that is a prefix
62 of all paths in *list*. If *list* is empty, return the empty string (``''``).
63 Note that this may return invalid paths because it works a character at a time.
64
65
66.. function:: dirname(path)
67
Chris Jerdonek0b502ff2012-11-25 20:38:01 -080068 Return the directory name of pathname *path*. This is the first element of
69 the pair returned by passing *path* to the function :func:`split`.
Georg Brandl116aa622007-08-15 14:28:22 +000070
71
72.. function:: exists(path)
73
Richard Oudkerk2240ac12012-07-06 12:05:32 +010074 Return ``True`` if *path* refers to an existing path or an open
75 file descriptor. Returns ``False`` for broken symbolic links. On
76 some platforms, this function may return ``False`` if permission is
77 not granted to execute :func:`os.stat` on the requested file, even
Georg Brandl116aa622007-08-15 14:28:22 +000078 if the *path* physically exists.
79
Richard Oudkerk2240ac12012-07-06 12:05:32 +010080 .. versionchanged:: 3.3
81 *path* can now be an integer: ``True`` is returned if it is an
82 open file descriptor, ``False`` otherwise.
83
Georg Brandl116aa622007-08-15 14:28:22 +000084
85.. function:: lexists(path)
86
87 Return ``True`` if *path* refers to an existing path. Returns ``True`` for
88 broken symbolic links. Equivalent to :func:`exists` on platforms lacking
89 :func:`os.lstat`.
90
Georg Brandl116aa622007-08-15 14:28:22 +000091
92.. function:: expanduser(path)
93
94 On Unix and Windows, return the argument with an initial component of ``~`` or
95 ``~user`` replaced by that *user*'s home directory.
96
97 .. index:: module: pwd
98
99 On Unix, an initial ``~`` is replaced by the environment variable :envvar:`HOME`
100 if it is set; otherwise the current user's home directory is looked up in the
101 password directory through the built-in module :mod:`pwd`. An initial ``~user``
102 is looked up directly in the password directory.
103
104 On Windows, :envvar:`HOME` and :envvar:`USERPROFILE` will be used if set,
105 otherwise a combination of :envvar:`HOMEPATH` and :envvar:`HOMEDRIVE` will be
106 used. An initial ``~user`` is handled by stripping the last directory component
107 from the created user path derived above.
108
109 If the expansion fails or if the path does not begin with a tilde, the path is
110 returned unchanged.
111
112
113.. function:: expandvars(path)
114
115 Return the argument with environment variables expanded. Substrings of the form
116 ``$name`` or ``${name}`` are replaced by the value of environment variable
117 *name*. Malformed variable names and references to non-existing variables are
118 left unchanged.
119
120 On Windows, ``%name%`` expansions are supported in addition to ``$name`` and
121 ``${name}``.
122
123
124.. function:: getatime(path)
125
126 Return the time of last access of *path*. The return value is a number giving
127 the number of seconds since the epoch (see the :mod:`time` module). Raise
Andrew Svetlov618c2e12012-12-15 22:59:24 +0200128 :exc:`OSError` if the file does not exist or is inaccessible.
Georg Brandl116aa622007-08-15 14:28:22 +0000129
Georg Brandl55ac8f02007-09-01 13:51:09 +0000130 If :func:`os.stat_float_times` returns True, the result is a floating point
131 number.
Georg Brandl116aa622007-08-15 14:28:22 +0000132
133
134.. function:: getmtime(path)
135
136 Return the time of last modification of *path*. The return value is a number
137 giving the number of seconds since the epoch (see the :mod:`time` module).
Andrew Svetlov618c2e12012-12-15 22:59:24 +0200138 Raise :exc:`OSError` if the file does not exist or is inaccessible.
Georg Brandl116aa622007-08-15 14:28:22 +0000139
Georg Brandl55ac8f02007-09-01 13:51:09 +0000140 If :func:`os.stat_float_times` returns True, the result is a floating point
141 number.
Georg Brandl116aa622007-08-15 14:28:22 +0000142
143
144.. function:: getctime(path)
145
146 Return the system's ctime which, on some systems (like Unix) is the time of the
147 last change, and, on others (like Windows), is the creation time for *path*.
148 The return value is a number giving the number of seconds since the epoch (see
Andrew Svetlov618c2e12012-12-15 22:59:24 +0200149 the :mod:`time` module). Raise :exc:`OSError` if the file does not exist or
Georg Brandl116aa622007-08-15 14:28:22 +0000150 is inaccessible.
151
Georg Brandl116aa622007-08-15 14:28:22 +0000152
153.. function:: getsize(path)
154
Andrew Svetlov618c2e12012-12-15 22:59:24 +0200155 Return the size, in bytes, of *path*. Raise :exc:`OSError` if the file does
Georg Brandl116aa622007-08-15 14:28:22 +0000156 not exist or is inaccessible.
157
Georg Brandl116aa622007-08-15 14:28:22 +0000158
159.. function:: isabs(path)
160
Christian Heimesaf98da12008-01-27 15:18:18 +0000161 Return ``True`` if *path* is an absolute pathname. On Unix, that means it
162 begins with a slash, on Windows that it begins with a (back)slash after chopping
163 off a potential drive letter.
Georg Brandl116aa622007-08-15 14:28:22 +0000164
165
166.. function:: isfile(path)
167
168 Return ``True`` if *path* is an existing regular file. This follows symbolic
169 links, so both :func:`islink` and :func:`isfile` can be true for the same path.
170
171
172.. function:: isdir(path)
173
174 Return ``True`` if *path* is an existing directory. This follows symbolic
175 links, so both :func:`islink` and :func:`isdir` can be true for the same path.
176
177
178.. function:: islink(path)
179
180 Return ``True`` if *path* refers to a directory entry that is a symbolic link.
181 Always ``False`` if symbolic links are not supported.
182
183
184.. function:: ismount(path)
185
186 Return ``True`` if pathname *path* is a :dfn:`mount point`: a point in a file
187 system where a different file system has been mounted. The function checks
188 whether *path*'s parent, :file:`path/..`, is on a different device than *path*,
189 or whether :file:`path/..` and *path* point to the same i-node on the same
190 device --- this should detect mount points for all Unix and POSIX variants.
191
192
193.. function:: join(path1[, path2[, ...]])
194
195 Join one or more path components intelligently. If any component is an absolute
196 path, all previous components (on Windows, including the previous drive letter,
197 if there was one) are thrown away, and joining continues. The return value is
198 the concatenation of *path1*, and optionally *path2*, etc., with exactly one
R David Murray24eb4bc2011-06-23 21:26:13 -0400199 directory separator (``os.sep``) following each non-empty part except the last.
200 (This means that an empty last part will result in a path that ends with a
201 separator.) Note that on Windows, since there is a current directory for
202 each drive, ``os.path.join("c:", "foo")`` represents a path relative to the
203 current directory on drive :file:`C:` (:file:`c:foo`), not :file:`c:\\foo`.
Georg Brandl116aa622007-08-15 14:28:22 +0000204
205
206.. function:: normcase(path)
207
Benjamin Petersond23f8222009-04-05 19:13:16 +0000208 Normalize the case of a pathname. On Unix and Mac OS X, this returns the
209 path unchanged; on case-insensitive filesystems, it converts the path to
210 lowercase. On Windows, it also converts forward slashes to backward slashes.
Ezio Melotti5a3ef5b2010-06-25 10:56:11 +0000211 Raise a TypeError if the type of *path* is not ``str`` or ``bytes``.
Georg Brandl116aa622007-08-15 14:28:22 +0000212
213
214.. function:: normpath(path)
215
216 Normalize a pathname. This collapses redundant separators and up-level
Georg Brandl353ebce2010-08-02 19:19:26 +0000217 references so that ``A//B``, ``A/B/``, ``A/./B`` and ``A/foo/../B`` all become
218 ``A/B``.
219
Georg Brandl116aa622007-08-15 14:28:22 +0000220 It does not normalize the case (use :func:`normcase` for that). On Windows, it
221 converts forward slashes to backward slashes. It should be understood that this
222 may change the meaning of the path if it contains symbolic links!
223
224
225.. function:: realpath(path)
226
227 Return the canonical path of the specified filename, eliminating any symbolic
228 links encountered in the path (if they are supported by the operating system).
229
Georg Brandl116aa622007-08-15 14:28:22 +0000230
Georg Brandl18244152009-09-02 20:34:52 +0000231.. function:: relpath(path, start=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000232
233 Return a relative filepath to *path* either from the current directory or from
234 an optional *start* point.
235
Benjamin Petersonf650e462010-05-06 23:03:05 +0000236 *start* defaults to :attr:`os.curdir`.
237
Antoine Pitrouf10f1622010-12-12 20:17:29 +0000238 Availability: Unix, Windows.
Georg Brandl116aa622007-08-15 14:28:22 +0000239
Georg Brandl116aa622007-08-15 14:28:22 +0000240
241.. function:: samefile(path1, path2)
242
Brian Curtind40e6f72010-07-08 21:39:08 +0000243 Return ``True`` if both pathname arguments refer to the same file or directory.
244 On Unix, this is determined by the device number and i-node number and raises an
245 exception if a :func:`os.stat` call on either pathname fails.
Benjamin Petersonf650e462010-05-06 23:03:05 +0000246
Brian Curtind40e6f72010-07-08 21:39:08 +0000247 On Windows, two files are the same if they resolve to the same final path
Brian Curtinc7395692010-07-09 15:15:09 +0000248 name using the Windows API call GetFinalPathNameByHandle. This function
Brian Curtind40e6f72010-07-08 21:39:08 +0000249 raises an exception if handles cannot be obtained to either file.
250
Antoine Pitrouf10f1622010-12-12 20:17:29 +0000251 Availability: Unix, Windows.
Georg Brandl116aa622007-08-15 14:28:22 +0000252
Georg Brandlb3823372010-07-10 08:58:37 +0000253 .. versionchanged:: 3.2
254 Added Windows support.
Brian Curtinc7395692010-07-09 15:15:09 +0000255
Georg Brandl116aa622007-08-15 14:28:22 +0000256
257.. function:: sameopenfile(fp1, fp2)
258
259 Return ``True`` if the file descriptors *fp1* and *fp2* refer to the same file.
Benjamin Petersonf650e462010-05-06 23:03:05 +0000260
Brian Curtin62857742010-09-06 17:07:27 +0000261 Availability: Unix, Windows.
262
Georg Brandl61063cc2012-06-24 22:48:30 +0200263 .. versionchanged:: 3.2
264 Added Windows support.
Georg Brandl116aa622007-08-15 14:28:22 +0000265
266
267.. function:: samestat(stat1, stat2)
268
269 Return ``True`` if the stat tuples *stat1* and *stat2* refer to the same file.
270 These structures may have been returned by :func:`fstat`, :func:`lstat`, or
271 :func:`stat`. This function implements the underlying comparison used by
Benjamin Petersonf650e462010-05-06 23:03:05 +0000272 :func:`samefile` and :func:`sameopenfile`.
273
274 Availability: Unix.
Georg Brandl116aa622007-08-15 14:28:22 +0000275
276
277.. function:: split(path)
278
Georg Brandl539c1652010-10-14 06:46:08 +0000279 Split the pathname *path* into a pair, ``(head, tail)`` where *tail* is the
280 last pathname component and *head* is everything leading up to that. The
281 *tail* part will never contain a slash; if *path* ends in a slash, *tail*
282 will be empty. If there is no slash in *path*, *head* will be empty. If
283 *path* is empty, both *head* and *tail* are empty. Trailing slashes are
284 stripped from *head* unless it is the root (one or more slashes only). In
285 all cases, ``join(head, tail)`` returns a path to the same location as *path*
Chris Jerdonek0b502ff2012-11-25 20:38:01 -0800286 (but the strings may differ). Also see the functions :func:`dirname` and
287 :func:`basename`.
Georg Brandl116aa622007-08-15 14:28:22 +0000288
289
290.. function:: splitdrive(path)
291
292 Split the pathname *path* into a pair ``(drive, tail)`` where *drive* is either
Mark Hammond5a607a32009-05-06 08:04:54 +0000293 a mount point or the empty string. On systems which do not use drive
Georg Brandl116aa622007-08-15 14:28:22 +0000294 specifications, *drive* will always be the empty string. In all cases, ``drive
295 + tail`` will be the same as *path*.
296
Mark Hammond5a607a32009-05-06 08:04:54 +0000297 On Windows, splits a pathname into drive/UNC sharepoint and relative path.
298
299 If the path contains a drive letter, drive will contain everything
300 up to and including the colon.
301 e.g. ``splitdrive("c:/dir")`` returns ``("c:", "/dir")``
302
303 If the path contains a UNC path, drive will contain the host name
304 and share, up to but not including the fourth separator.
305 e.g. ``splitdrive("//host/computer/dir")`` returns ``("//host/computer", "/dir")``
306
Georg Brandl116aa622007-08-15 14:28:22 +0000307
308.. function:: splitext(path)
309
310 Split the pathname *path* into a pair ``(root, ext)`` such that ``root + ext ==
311 path``, and *ext* is empty or begins with a period and contains at most one
312 period. Leading periods on the basename are ignored; ``splitext('.cshrc')``
313 returns ``('.cshrc', '')``.
314
Georg Brandl116aa622007-08-15 14:28:22 +0000315
316.. function:: splitunc(path)
317
Mark Hammond5a607a32009-05-06 08:04:54 +0000318 .. deprecated:: 3.1
319 Use *splitdrive* instead.
320
Georg Brandl116aa622007-08-15 14:28:22 +0000321 Split the pathname *path* into a pair ``(unc, rest)`` so that *unc* is the UNC
322 mount point (such as ``r'\\host\mount'``), if present, and *rest* the rest of
323 the path (such as ``r'\path\file.ext'``). For paths containing drive letters,
Benjamin Petersonf650e462010-05-06 23:03:05 +0000324 *unc* will always be the empty string.
325
326 Availability: Windows.
Georg Brandl116aa622007-08-15 14:28:22 +0000327
328
Georg Brandl116aa622007-08-15 14:28:22 +0000329.. data:: supports_unicode_filenames
330
331 True if arbitrary Unicode strings can be used as file names (within limitations
Victor Stinnerb55e4982010-09-11 00:22:12 +0000332 imposed by the file system).