blob: babc443dd3b30435817b23d49e65707f5b05f290 [file] [log] [blame]
Antoine Pitrou31119e42013-11-22 17:38:12 +01001import fnmatch
2import functools
3import io
4import ntpath
5import os
6import posixpath
7import re
8import sys
Serhiy Storchaka81108372017-09-26 00:55:55 +03009from _collections_abc import Sequence
Jörg Stucked5c120f2019-05-21 19:44:40 +020010from errno import EINVAL, ENOENT, ENOTDIR, EBADF, ELOOP
Antoine Pitrou31119e42013-11-22 17:38:12 +010011from operator import attrgetter
12from stat import S_ISDIR, S_ISLNK, S_ISREG, S_ISSOCK, S_ISBLK, S_ISCHR, S_ISFIFO
Antoine Pitrou069a5e12013-12-03 09:41:35 +010013from urllib.parse import quote_from_bytes as urlquote_from_bytes
Antoine Pitrou31119e42013-11-22 17:38:12 +010014
15
16supports_symlinks = True
Antoine Pitroudb118f52014-11-19 00:32:08 +010017if os.name == 'nt':
Antoine Pitrou31119e42013-11-22 17:38:12 +010018 import nt
Antoine Pitrou31119e42013-11-22 17:38:12 +010019 if sys.getwindowsversion()[:2] >= (6, 0):
20 from nt import _getfinalpathname
21 else:
22 supports_symlinks = False
23 _getfinalpathname = None
Antoine Pitroudb118f52014-11-19 00:32:08 +010024else:
25 nt = None
Antoine Pitrou31119e42013-11-22 17:38:12 +010026
27
28__all__ = [
29 "PurePath", "PurePosixPath", "PureWindowsPath",
30 "Path", "PosixPath", "WindowsPath",
31 ]
32
33#
34# Internals
35#
36
penguindustin96466302019-05-06 14:57:17 -040037# EBADF - guard against macOS `stat` throwing EBADF
Jörg Stucked5c120f2019-05-21 19:44:40 +020038_IGNORED_ERROS = (ENOENT, ENOTDIR, EBADF, ELOOP)
Przemysław Spodymek216b7452018-08-27 23:33:45 +020039
Steve Dower2f6fae62019-02-03 23:08:18 -080040_IGNORED_WINERRORS = (
41 21, # ERROR_NOT_READY - drive exists but is not accessible
Jörg Stucked5c120f2019-05-21 19:44:40 +020042 1921, # ERROR_CANT_RESOLVE_FILENAME - fix for broken symlink pointing to itself
Steve Dower2f6fae62019-02-03 23:08:18 -080043)
44
45def _ignore_error(exception):
46 return (getattr(exception, 'errno', None) in _IGNORED_ERROS or
47 getattr(exception, 'winerror', None) in _IGNORED_WINERRORS)
48
49
Antoine Pitrou31119e42013-11-22 17:38:12 +010050def _is_wildcard_pattern(pat):
51 # Whether this pattern needs actual matching using fnmatch, or can
52 # be looked up directly as a file.
53 return "*" in pat or "?" in pat or "[" in pat
54
55
56class _Flavour(object):
57 """A flavour implements a particular (platform-specific) set of path
58 semantics."""
59
60 def __init__(self):
61 self.join = self.sep.join
62
63 def parse_parts(self, parts):
64 parsed = []
65 sep = self.sep
66 altsep = self.altsep
67 drv = root = ''
68 it = reversed(parts)
69 for part in it:
70 if not part:
71 continue
72 if altsep:
73 part = part.replace(altsep, sep)
74 drv, root, rel = self.splitroot(part)
75 if sep in rel:
76 for x in reversed(rel.split(sep)):
77 if x and x != '.':
78 parsed.append(sys.intern(x))
79 else:
80 if rel and rel != '.':
81 parsed.append(sys.intern(rel))
82 if drv or root:
83 if not drv:
84 # If no drive is present, try to find one in the previous
85 # parts. This makes the result of parsing e.g.
86 # ("C:", "/", "a") reasonably intuitive.
87 for part in it:
Antoine Pitrou57fffd62015-02-15 18:03:59 +010088 if not part:
89 continue
90 if altsep:
91 part = part.replace(altsep, sep)
Antoine Pitrou31119e42013-11-22 17:38:12 +010092 drv = self.splitroot(part)[0]
93 if drv:
94 break
95 break
96 if drv or root:
97 parsed.append(drv + root)
98 parsed.reverse()
99 return drv, root, parsed
100
101 def join_parsed_parts(self, drv, root, parts, drv2, root2, parts2):
102 """
103 Join the two paths represented by the respective
104 (drive, root, parts) tuples. Return a new (drive, root, parts) tuple.
105 """
106 if root2:
Serhiy Storchakaa9939022013-12-06 17:14:12 +0200107 if not drv2 and drv:
108 return drv, root2, [drv + root2] + parts2[1:]
109 elif drv2:
110 if drv2 == drv or self.casefold(drv2) == self.casefold(drv):
111 # Same drive => second path is relative to the first
112 return drv, root, parts + parts2[1:]
Antoine Pitrou31119e42013-11-22 17:38:12 +0100113 else:
Serhiy Storchakaa9939022013-12-06 17:14:12 +0200114 # Second path is non-anchored (common case)
115 return drv, root, parts + parts2
116 return drv2, root2, parts2
Antoine Pitrou31119e42013-11-22 17:38:12 +0100117
118
119class _WindowsFlavour(_Flavour):
120 # Reference for Windows paths can be found at
121 # http://msdn.microsoft.com/en-us/library/aa365247%28v=vs.85%29.aspx
122
123 sep = '\\'
124 altsep = '/'
125 has_drv = True
126 pathmod = ntpath
127
Antoine Pitroudb118f52014-11-19 00:32:08 +0100128 is_supported = (os.name == 'nt')
Antoine Pitrou31119e42013-11-22 17:38:12 +0100129
Jon Dufresne39726282017-05-18 07:35:54 -0700130 drive_letters = set('abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ')
Antoine Pitrou31119e42013-11-22 17:38:12 +0100131 ext_namespace_prefix = '\\\\?\\'
132
133 reserved_names = (
134 {'CON', 'PRN', 'AUX', 'NUL'} |
135 {'COM%d' % i for i in range(1, 10)} |
136 {'LPT%d' % i for i in range(1, 10)}
137 )
138
139 # Interesting findings about extended paths:
140 # - '\\?\c:\a', '//?/c:\a' and '//?/c:/a' are all supported
141 # but '\\?\c:/a' is not
142 # - extended paths are always absolute; "relative" extended paths will
143 # fail.
144
145 def splitroot(self, part, sep=sep):
146 first = part[0:1]
147 second = part[1:2]
148 if (second == sep and first == sep):
149 # XXX extended paths should also disable the collapsing of "."
150 # components (according to MSDN docs).
151 prefix, part = self._split_extended_path(part)
152 first = part[0:1]
153 second = part[1:2]
154 else:
155 prefix = ''
156 third = part[2:3]
157 if (second == sep and first == sep and third != sep):
158 # is a UNC path:
159 # vvvvvvvvvvvvvvvvvvvvv root
160 # \\machine\mountpoint\directory\etc\...
161 # directory ^^^^^^^^^^^^^^
162 index = part.find(sep, 2)
163 if index != -1:
164 index2 = part.find(sep, index + 1)
165 # a UNC path can't have two slashes in a row
166 # (after the initial two)
167 if index2 != index + 1:
168 if index2 == -1:
169 index2 = len(part)
170 if prefix:
171 return prefix + part[1:index2], sep, part[index2+1:]
172 else:
173 return part[:index2], sep, part[index2+1:]
174 drv = root = ''
175 if second == ':' and first in self.drive_letters:
176 drv = part[:2]
177 part = part[2:]
178 first = third
179 if first == sep:
180 root = first
181 part = part.lstrip(sep)
182 return prefix + drv, root, part
183
184 def casefold(self, s):
185 return s.lower()
186
187 def casefold_parts(self, parts):
188 return [p.lower() for p in parts]
189
Serhiy Storchaka10ecbad2019-10-21 20:37:15 +0300190 def compile_pattern(self, pattern):
191 return re.compile(fnmatch.translate(pattern), re.IGNORECASE).fullmatch
192
Steve Dower98eb3602016-11-09 12:58:17 -0800193 def resolve(self, path, strict=False):
Antoine Pitrou31119e42013-11-22 17:38:12 +0100194 s = str(path)
195 if not s:
196 return os.getcwd()
Steve Dower98eb3602016-11-09 12:58:17 -0800197 previous_s = None
Antoine Pitrou31119e42013-11-22 17:38:12 +0100198 if _getfinalpathname is not None:
Steve Dower98eb3602016-11-09 12:58:17 -0800199 if strict:
200 return self._ext_to_normal(_getfinalpathname(s))
201 else:
Antoine Pietriadd98eb2017-06-07 17:29:17 +0200202 tail_parts = [] # End of the path after the first one not found
Steve Dower98eb3602016-11-09 12:58:17 -0800203 while True:
204 try:
205 s = self._ext_to_normal(_getfinalpathname(s))
206 except FileNotFoundError:
207 previous_s = s
Antoine Pietriadd98eb2017-06-07 17:29:17 +0200208 s, tail = os.path.split(s)
209 tail_parts.append(tail)
Steve Dower4b1e98b2016-12-28 16:02:59 -0800210 if previous_s == s:
211 return path
Steve Dower98eb3602016-11-09 12:58:17 -0800212 else:
Antoine Pietriadd98eb2017-06-07 17:29:17 +0200213 return os.path.join(s, *reversed(tail_parts))
Antoine Pitrou31119e42013-11-22 17:38:12 +0100214 # Means fallback on absolute
215 return None
216
217 def _split_extended_path(self, s, ext_prefix=ext_namespace_prefix):
218 prefix = ''
219 if s.startswith(ext_prefix):
220 prefix = s[:4]
221 s = s[4:]
222 if s.startswith('UNC\\'):
223 prefix += s[:3]
224 s = '\\' + s[3:]
225 return prefix, s
226
227 def _ext_to_normal(self, s):
228 # Turn back an extended path into a normal DOS-like path
229 return self._split_extended_path(s)[1]
230
231 def is_reserved(self, parts):
232 # NOTE: the rules for reserved names seem somewhat complicated
233 # (e.g. r"..\NUL" is reserved but not r"foo\NUL").
234 # We err on the side of caution and return True for paths which are
235 # not considered reserved by Windows.
236 if not parts:
237 return False
238 if parts[0].startswith('\\\\'):
239 # UNC paths are never reserved
240 return False
241 return parts[-1].partition('.')[0].upper() in self.reserved_names
242
243 def make_uri(self, path):
244 # Under Windows, file URIs use the UTF-8 encoding.
245 drive = path.drive
246 if len(drive) == 2 and drive[1] == ':':
247 # It's a path on a local drive => 'file:///c:/a/b'
248 rest = path.as_posix()[2:].lstrip('/')
249 return 'file:///%s/%s' % (
250 drive, urlquote_from_bytes(rest.encode('utf-8')))
251 else:
252 # It's a path on a network drive => 'file://host/share/a/b'
253 return 'file:' + urlquote_from_bytes(path.as_posix().encode('utf-8'))
254
Antoine Pitrou8477ed62014-12-30 20:54:45 +0100255 def gethomedir(self, username):
Christoph Reiterc45a2aa2020-01-28 10:41:50 +0100256 if 'USERPROFILE' in os.environ:
Antoine Pitrou8477ed62014-12-30 20:54:45 +0100257 userhome = os.environ['USERPROFILE']
258 elif 'HOMEPATH' in os.environ:
Antoine Pitrou5d4e27e2014-12-30 22:09:42 +0100259 try:
260 drv = os.environ['HOMEDRIVE']
261 except KeyError:
262 drv = ''
263 userhome = drv + os.environ['HOMEPATH']
Antoine Pitrou8477ed62014-12-30 20:54:45 +0100264 else:
265 raise RuntimeError("Can't determine home directory")
266
267 if username:
268 # Try to guess user home directory. By default all users
269 # directories are located in the same place and are named by
270 # corresponding usernames. If current user home directory points
271 # to nonstandard place, this guess is likely wrong.
272 if os.environ['USERNAME'] != username:
273 drv, root, parts = self.parse_parts((userhome,))
274 if parts[-1] != os.environ['USERNAME']:
275 raise RuntimeError("Can't determine home directory "
276 "for %r" % username)
277 parts[-1] = username
278 if drv or root:
279 userhome = drv + root + self.join(parts[1:])
280 else:
281 userhome = self.join(parts)
282 return userhome
Antoine Pitrou31119e42013-11-22 17:38:12 +0100283
284class _PosixFlavour(_Flavour):
285 sep = '/'
286 altsep = ''
287 has_drv = False
288 pathmod = posixpath
289
290 is_supported = (os.name != 'nt')
291
292 def splitroot(self, part, sep=sep):
293 if part and part[0] == sep:
294 stripped_part = part.lstrip(sep)
295 # According to POSIX path resolution:
296 # http://pubs.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap04.html#tag_04_11
297 # "A pathname that begins with two successive slashes may be
298 # interpreted in an implementation-defined manner, although more
299 # than two leading slashes shall be treated as a single slash".
300 if len(part) - len(stripped_part) == 2:
301 return '', sep * 2, stripped_part
302 else:
303 return '', sep, stripped_part
304 else:
305 return '', '', part
306
307 def casefold(self, s):
308 return s
309
310 def casefold_parts(self, parts):
311 return parts
312
Serhiy Storchaka10ecbad2019-10-21 20:37:15 +0300313 def compile_pattern(self, pattern):
314 return re.compile(fnmatch.translate(pattern)).fullmatch
315
Steve Dower98eb3602016-11-09 12:58:17 -0800316 def resolve(self, path, strict=False):
Antoine Pitrou31119e42013-11-22 17:38:12 +0100317 sep = self.sep
Antoine Pitrou31119e42013-11-22 17:38:12 +0100318 accessor = path._accessor
Antoine Pitrouc274fd22013-12-16 19:57:41 +0100319 seen = {}
320 def _resolve(path, rest):
321 if rest.startswith(sep):
322 path = ''
323
324 for name in rest.split(sep):
325 if not name or name == '.':
326 # current dir
327 continue
328 if name == '..':
329 # parent dir
330 path, _, _ = path.rpartition(sep)
331 continue
Dong-hee Na94ad6c62018-06-12 23:30:45 +0900332 if path.endswith(sep):
333 newpath = path + name
334 else:
335 newpath = path + sep + name
Antoine Pitrouc274fd22013-12-16 19:57:41 +0100336 if newpath in seen:
337 # Already seen this path
338 path = seen[newpath]
339 if path is not None:
340 # use cached value
341 continue
342 # The symlink is not resolved, so we must have a symlink loop.
343 raise RuntimeError("Symlink loop from %r" % newpath)
344 # Resolve the symbolic link
345 try:
346 target = accessor.readlink(newpath)
347 except OSError as e:
Antoine Pietriadd98eb2017-06-07 17:29:17 +0200348 if e.errno != EINVAL and strict:
349 raise
350 # Not a symlink, or non-strict mode. We just leave the path
351 # untouched.
Antoine Pitrouc274fd22013-12-16 19:57:41 +0100352 path = newpath
353 else:
354 seen[newpath] = None # not resolved symlink
355 path = _resolve(path, target)
356 seen[newpath] = path # resolved symlink
357
358 return path
359 # NOTE: according to POSIX, getcwd() cannot contain path components
360 # which are symlinks.
361 base = '' if path.is_absolute() else os.getcwd()
362 return _resolve(base, str(path)) or sep
Antoine Pitrou31119e42013-11-22 17:38:12 +0100363
364 def is_reserved(self, parts):
365 return False
366
367 def make_uri(self, path):
368 # We represent the path using the local filesystem encoding,
369 # for portability to other applications.
370 bpath = bytes(path)
371 return 'file://' + urlquote_from_bytes(bpath)
372
Antoine Pitrou8477ed62014-12-30 20:54:45 +0100373 def gethomedir(self, username):
374 if not username:
375 try:
376 return os.environ['HOME']
377 except KeyError:
378 import pwd
379 return pwd.getpwuid(os.getuid()).pw_dir
380 else:
381 import pwd
382 try:
383 return pwd.getpwnam(username).pw_dir
384 except KeyError:
385 raise RuntimeError("Can't determine home directory "
386 "for %r" % username)
387
Antoine Pitrou31119e42013-11-22 17:38:12 +0100388
389_windows_flavour = _WindowsFlavour()
390_posix_flavour = _PosixFlavour()
391
392
393class _Accessor:
394 """An accessor implements a particular (system-specific or not) way of
395 accessing paths on the filesystem."""
396
397
398class _NormalAccessor(_Accessor):
399
Serhiy Storchaka62a99512017-03-25 13:42:11 +0200400 stat = os.stat
Antoine Pitrou31119e42013-11-22 17:38:12 +0100401
Serhiy Storchaka62a99512017-03-25 13:42:11 +0200402 lstat = os.lstat
Antoine Pitrou31119e42013-11-22 17:38:12 +0100403
Serhiy Storchaka62a99512017-03-25 13:42:11 +0200404 open = os.open
Antoine Pitrou31119e42013-11-22 17:38:12 +0100405
Serhiy Storchaka62a99512017-03-25 13:42:11 +0200406 listdir = os.listdir
Antoine Pitrou31119e42013-11-22 17:38:12 +0100407
Serhiy Storchaka62a99512017-03-25 13:42:11 +0200408 scandir = os.scandir
Antoine Pitrou31119e42013-11-22 17:38:12 +0100409
Serhiy Storchaka62a99512017-03-25 13:42:11 +0200410 chmod = os.chmod
Antoine Pitrou31119e42013-11-22 17:38:12 +0100411
412 if hasattr(os, "lchmod"):
Serhiy Storchaka62a99512017-03-25 13:42:11 +0200413 lchmod = os.lchmod
Antoine Pitrou31119e42013-11-22 17:38:12 +0100414 else:
415 def lchmod(self, pathobj, mode):
416 raise NotImplementedError("lchmod() not available on this system")
417
Serhiy Storchaka62a99512017-03-25 13:42:11 +0200418 mkdir = os.mkdir
Antoine Pitrou31119e42013-11-22 17:38:12 +0100419
Serhiy Storchaka62a99512017-03-25 13:42:11 +0200420 unlink = os.unlink
Antoine Pitrou31119e42013-11-22 17:38:12 +0100421
Toke Høiland-Jørgensen092435e2019-12-16 13:23:55 +0100422 if hasattr(os, "link"):
423 link_to = os.link
424 else:
425 @staticmethod
426 def link_to(self, target):
427 raise NotImplementedError("os.link() not available on this system")
Joannah Nanjekye6b5b0132019-05-04 11:27:10 -0400428
Serhiy Storchaka62a99512017-03-25 13:42:11 +0200429 rmdir = os.rmdir
Antoine Pitrou31119e42013-11-22 17:38:12 +0100430
Serhiy Storchaka62a99512017-03-25 13:42:11 +0200431 rename = os.rename
Antoine Pitrou31119e42013-11-22 17:38:12 +0100432
Serhiy Storchaka62a99512017-03-25 13:42:11 +0200433 replace = os.replace
Antoine Pitrou31119e42013-11-22 17:38:12 +0100434
435 if nt:
436 if supports_symlinks:
Serhiy Storchaka62a99512017-03-25 13:42:11 +0200437 symlink = os.symlink
Antoine Pitrou31119e42013-11-22 17:38:12 +0100438 else:
439 def symlink(a, b, target_is_directory):
440 raise NotImplementedError("symlink() not available on this system")
441 else:
442 # Under POSIX, os.symlink() takes two args
443 @staticmethod
444 def symlink(a, b, target_is_directory):
Serhiy Storchaka62a99512017-03-25 13:42:11 +0200445 return os.symlink(a, b)
Antoine Pitrou31119e42013-11-22 17:38:12 +0100446
Serhiy Storchaka62a99512017-03-25 13:42:11 +0200447 utime = os.utime
Antoine Pitrou31119e42013-11-22 17:38:12 +0100448
449 # Helper for resolve()
450 def readlink(self, path):
451 return os.readlink(path)
452
Barney Gale22386bb2020-04-17 17:41:07 +0100453 def owner(self, path):
454 try:
455 import pwd
456 return pwd.getpwuid(self.stat(path).st_uid).pw_name
457 except ImportError:
458 raise NotImplementedError("Path.owner() is unsupported on this system")
459
460 def group(self, path):
461 try:
462 import grp
463 return grp.getgrgid(self.stat(path).st_gid).gr_name
464 except ImportError:
465 raise NotImplementedError("Path.group() is unsupported on this system")
466
Antoine Pitrou31119e42013-11-22 17:38:12 +0100467
468_normal_accessor = _NormalAccessor()
469
470
471#
472# Globbing helpers
473#
474
Serhiy Storchaka10ecbad2019-10-21 20:37:15 +0300475def _make_selector(pattern_parts, flavour):
Antoine Pitrou31119e42013-11-22 17:38:12 +0100476 pat = pattern_parts[0]
477 child_parts = pattern_parts[1:]
478 if pat == '**':
479 cls = _RecursiveWildcardSelector
480 elif '**' in pat:
481 raise ValueError("Invalid pattern: '**' can only be an entire path component")
482 elif _is_wildcard_pattern(pat):
483 cls = _WildcardSelector
484 else:
485 cls = _PreciseSelector
Serhiy Storchaka10ecbad2019-10-21 20:37:15 +0300486 return cls(pat, child_parts, flavour)
Antoine Pitrou31119e42013-11-22 17:38:12 +0100487
488if hasattr(functools, "lru_cache"):
489 _make_selector = functools.lru_cache()(_make_selector)
490
491
492class _Selector:
493 """A selector matches a specific glob pattern part against the children
494 of a given path."""
495
Serhiy Storchaka10ecbad2019-10-21 20:37:15 +0300496 def __init__(self, child_parts, flavour):
Antoine Pitrou31119e42013-11-22 17:38:12 +0100497 self.child_parts = child_parts
498 if child_parts:
Serhiy Storchaka10ecbad2019-10-21 20:37:15 +0300499 self.successor = _make_selector(child_parts, flavour)
Serhiy Storchaka680cb152016-09-07 10:58:05 +0300500 self.dironly = True
Antoine Pitrou31119e42013-11-22 17:38:12 +0100501 else:
502 self.successor = _TerminatingSelector()
Serhiy Storchaka680cb152016-09-07 10:58:05 +0300503 self.dironly = False
Antoine Pitrou31119e42013-11-22 17:38:12 +0100504
505 def select_from(self, parent_path):
506 """Iterate over all child paths of `parent_path` matched by this
507 selector. This can contain parent_path itself."""
508 path_cls = type(parent_path)
509 is_dir = path_cls.is_dir
510 exists = path_cls.exists
Serhiy Storchaka680cb152016-09-07 10:58:05 +0300511 scandir = parent_path._accessor.scandir
512 if not is_dir(parent_path):
513 return iter([])
514 return self._select_from(parent_path, is_dir, exists, scandir)
Antoine Pitrou31119e42013-11-22 17:38:12 +0100515
516
517class _TerminatingSelector:
518
Serhiy Storchaka680cb152016-09-07 10:58:05 +0300519 def _select_from(self, parent_path, is_dir, exists, scandir):
Antoine Pitrou31119e42013-11-22 17:38:12 +0100520 yield parent_path
521
522
523class _PreciseSelector(_Selector):
524
Serhiy Storchaka10ecbad2019-10-21 20:37:15 +0300525 def __init__(self, name, child_parts, flavour):
Antoine Pitrou31119e42013-11-22 17:38:12 +0100526 self.name = name
Serhiy Storchaka10ecbad2019-10-21 20:37:15 +0300527 _Selector.__init__(self, child_parts, flavour)
Antoine Pitrou31119e42013-11-22 17:38:12 +0100528
Serhiy Storchaka680cb152016-09-07 10:58:05 +0300529 def _select_from(self, parent_path, is_dir, exists, scandir):
Guido van Rossum6c2d33a2016-01-06 09:42:07 -0800530 try:
Guido van Rossum6c2d33a2016-01-06 09:42:07 -0800531 path = parent_path._make_child_relpath(self.name)
Serhiy Storchaka680cb152016-09-07 10:58:05 +0300532 if (is_dir if self.dironly else exists)(path):
533 for p in self.successor._select_from(path, is_dir, exists, scandir):
Guido van Rossum6c2d33a2016-01-06 09:42:07 -0800534 yield p
535 except PermissionError:
Antoine Pitrou31119e42013-11-22 17:38:12 +0100536 return
Antoine Pitrou31119e42013-11-22 17:38:12 +0100537
538
539class _WildcardSelector(_Selector):
540
Serhiy Storchaka10ecbad2019-10-21 20:37:15 +0300541 def __init__(self, pat, child_parts, flavour):
542 self.match = flavour.compile_pattern(pat)
543 _Selector.__init__(self, child_parts, flavour)
Antoine Pitrou31119e42013-11-22 17:38:12 +0100544
Serhiy Storchaka680cb152016-09-07 10:58:05 +0300545 def _select_from(self, parent_path, is_dir, exists, scandir):
Guido van Rossum6c2d33a2016-01-06 09:42:07 -0800546 try:
Serhiy Storchaka704e2062020-03-11 18:42:03 +0200547 with scandir(parent_path) as scandir_it:
548 entries = list(scandir_it)
Serhiy Storchaka680cb152016-09-07 10:58:05 +0300549 for entry in entries:
Pablo Galindoeb7560a2020-03-07 17:53:20 +0000550 if self.dironly:
551 try:
552 # "entry.is_dir()" can raise PermissionError
553 # in some cases (see bpo-38894), which is not
554 # among the errors ignored by _ignore_error()
555 if not entry.is_dir():
556 continue
557 except OSError as e:
558 if not _ignore_error(e):
559 raise
560 continue
561 name = entry.name
562 if self.match(name):
563 path = parent_path._make_child_relpath(name)
564 for p in self.successor._select_from(path, is_dir, exists, scandir):
565 yield p
Guido van Rossum6c2d33a2016-01-06 09:42:07 -0800566 except PermissionError:
Antoine Pitrou31119e42013-11-22 17:38:12 +0100567 return
Guido van Rossum6c2d33a2016-01-06 09:42:07 -0800568
Antoine Pitrou31119e42013-11-22 17:38:12 +0100569
Antoine Pitrou31119e42013-11-22 17:38:12 +0100570class _RecursiveWildcardSelector(_Selector):
571
Serhiy Storchaka10ecbad2019-10-21 20:37:15 +0300572 def __init__(self, pat, child_parts, flavour):
573 _Selector.__init__(self, child_parts, flavour)
Antoine Pitrou31119e42013-11-22 17:38:12 +0100574
Serhiy Storchaka680cb152016-09-07 10:58:05 +0300575 def _iterate_directories(self, parent_path, is_dir, scandir):
Antoine Pitrou31119e42013-11-22 17:38:12 +0100576 yield parent_path
Guido van Rossumbc9fdda2016-01-07 10:56:36 -0800577 try:
Serhiy Storchaka704e2062020-03-11 18:42:03 +0200578 with scandir(parent_path) as scandir_it:
579 entries = list(scandir_it)
Serhiy Storchaka680cb152016-09-07 10:58:05 +0300580 for entry in entries:
Przemysław Spodymek216b7452018-08-27 23:33:45 +0200581 entry_is_dir = False
582 try:
583 entry_is_dir = entry.is_dir()
584 except OSError as e:
Steve Dower2f6fae62019-02-03 23:08:18 -0800585 if not _ignore_error(e):
Przemysław Spodymek216b7452018-08-27 23:33:45 +0200586 raise
587 if entry_is_dir and not entry.is_symlink():
Serhiy Storchaka680cb152016-09-07 10:58:05 +0300588 path = parent_path._make_child_relpath(entry.name)
589 for p in self._iterate_directories(path, is_dir, scandir):
Guido van Rossumbc9fdda2016-01-07 10:56:36 -0800590 yield p
591 except PermissionError:
592 return
Antoine Pitrou31119e42013-11-22 17:38:12 +0100593
Serhiy Storchaka680cb152016-09-07 10:58:05 +0300594 def _select_from(self, parent_path, is_dir, exists, scandir):
Guido van Rossum6c2d33a2016-01-06 09:42:07 -0800595 try:
Serhiy Storchaka680cb152016-09-07 10:58:05 +0300596 yielded = set()
597 try:
598 successor_select = self.successor._select_from
599 for starting_point in self._iterate_directories(parent_path, is_dir, scandir):
600 for p in successor_select(starting_point, is_dir, exists, scandir):
601 if p not in yielded:
602 yield p
603 yielded.add(p)
604 finally:
605 yielded.clear()
Guido van Rossum6c2d33a2016-01-06 09:42:07 -0800606 except PermissionError:
Antoine Pitrou31119e42013-11-22 17:38:12 +0100607 return
Antoine Pitrou31119e42013-11-22 17:38:12 +0100608
609
610#
611# Public API
612#
613
614class _PathParents(Sequence):
615 """This object provides sequence-like access to the logical ancestors
616 of a path. Don't try to construct it yourself."""
617 __slots__ = ('_pathcls', '_drv', '_root', '_parts')
618
619 def __init__(self, path):
620 # We don't store the instance to avoid reference cycles
621 self._pathcls = type(path)
622 self._drv = path._drv
623 self._root = path._root
624 self._parts = path._parts
625
626 def __len__(self):
627 if self._drv or self._root:
628 return len(self._parts) - 1
629 else:
630 return len(self._parts)
631
632 def __getitem__(self, idx):
633 if idx < 0 or idx >= len(self):
634 raise IndexError(idx)
635 return self._pathcls._from_parsed_parts(self._drv, self._root,
636 self._parts[:-idx - 1])
637
638 def __repr__(self):
639 return "<{}.parents>".format(self._pathcls.__name__)
640
641
642class PurePath(object):
chasondfa015c2018-02-19 08:36:32 +0900643 """Base class for manipulating paths without I/O.
644
645 PurePath represents a filesystem path and offers operations which
Antoine Pitrou31119e42013-11-22 17:38:12 +0100646 don't imply any actual filesystem I/O. Depending on your system,
647 instantiating a PurePath will return either a PurePosixPath or a
648 PureWindowsPath object. You can also instantiate either of these classes
649 directly, regardless of your system.
650 """
651 __slots__ = (
652 '_drv', '_root', '_parts',
653 '_str', '_hash', '_pparts', '_cached_cparts',
654 )
655
656 def __new__(cls, *args):
657 """Construct a PurePath from one or several strings and or existing
658 PurePath objects. The strings and path objects are combined so as
659 to yield a canonicalized path, which is incorporated into the
660 new PurePath object.
661 """
662 if cls is PurePath:
663 cls = PureWindowsPath if os.name == 'nt' else PurePosixPath
664 return cls._from_parts(args)
665
666 def __reduce__(self):
667 # Using the parts tuple helps share interned path parts
668 # when pickling related paths.
669 return (self.__class__, tuple(self._parts))
670
671 @classmethod
672 def _parse_args(cls, args):
673 # This is useful when you don't want to create an instance, just
674 # canonicalize some constructor arguments.
675 parts = []
676 for a in args:
677 if isinstance(a, PurePath):
678 parts += a._parts
Antoine Pitrou31119e42013-11-22 17:38:12 +0100679 else:
Brett Cannon568be632016-06-10 12:20:49 -0700680 a = os.fspath(a)
681 if isinstance(a, str):
682 # Force-cast str subclasses to str (issue #21127)
683 parts.append(str(a))
684 else:
685 raise TypeError(
686 "argument should be a str object or an os.PathLike "
687 "object returning str, not %r"
688 % type(a))
Antoine Pitrou31119e42013-11-22 17:38:12 +0100689 return cls._flavour.parse_parts(parts)
690
691 @classmethod
692 def _from_parts(cls, args, init=True):
693 # We need to call _parse_args on the instance, so as to get the
694 # right flavour.
695 self = object.__new__(cls)
696 drv, root, parts = self._parse_args(args)
697 self._drv = drv
698 self._root = root
699 self._parts = parts
700 if init:
701 self._init()
702 return self
703
704 @classmethod
705 def _from_parsed_parts(cls, drv, root, parts, init=True):
706 self = object.__new__(cls)
707 self._drv = drv
708 self._root = root
709 self._parts = parts
710 if init:
711 self._init()
712 return self
713
714 @classmethod
715 def _format_parsed_parts(cls, drv, root, parts):
716 if drv or root:
717 return drv + root + cls._flavour.join(parts[1:])
718 else:
719 return cls._flavour.join(parts)
720
721 def _init(self):
Martin Pantere26da7c2016-06-02 10:07:09 +0000722 # Overridden in concrete Path
Antoine Pitrou31119e42013-11-22 17:38:12 +0100723 pass
724
725 def _make_child(self, args):
726 drv, root, parts = self._parse_args(args)
727 drv, root, parts = self._flavour.join_parsed_parts(
728 self._drv, self._root, self._parts, drv, root, parts)
729 return self._from_parsed_parts(drv, root, parts)
730
731 def __str__(self):
732 """Return the string representation of the path, suitable for
733 passing to system calls."""
734 try:
735 return self._str
736 except AttributeError:
737 self._str = self._format_parsed_parts(self._drv, self._root,
738 self._parts) or '.'
739 return self._str
740
Brett Cannon568be632016-06-10 12:20:49 -0700741 def __fspath__(self):
742 return str(self)
743
Antoine Pitrou31119e42013-11-22 17:38:12 +0100744 def as_posix(self):
745 """Return the string representation of the path with forward (/)
746 slashes."""
747 f = self._flavour
748 return str(self).replace(f.sep, '/')
749
750 def __bytes__(self):
751 """Return the bytes representation of the path. This is only
752 recommended to use under Unix."""
Serhiy Storchaka62a99512017-03-25 13:42:11 +0200753 return os.fsencode(self)
Antoine Pitrou31119e42013-11-22 17:38:12 +0100754
755 def __repr__(self):
756 return "{}({!r})".format(self.__class__.__name__, self.as_posix())
757
758 def as_uri(self):
759 """Return the path as a 'file' URI."""
760 if not self.is_absolute():
761 raise ValueError("relative path can't be expressed as a file URI")
762 return self._flavour.make_uri(self)
763
764 @property
765 def _cparts(self):
766 # Cached casefolded parts, for hashing and comparison
767 try:
768 return self._cached_cparts
769 except AttributeError:
770 self._cached_cparts = self._flavour.casefold_parts(self._parts)
771 return self._cached_cparts
772
773 def __eq__(self, other):
774 if not isinstance(other, PurePath):
775 return NotImplemented
776 return self._cparts == other._cparts and self._flavour is other._flavour
777
Antoine Pitrou31119e42013-11-22 17:38:12 +0100778 def __hash__(self):
779 try:
780 return self._hash
781 except AttributeError:
782 self._hash = hash(tuple(self._cparts))
783 return self._hash
784
785 def __lt__(self, other):
786 if not isinstance(other, PurePath) or self._flavour is not other._flavour:
787 return NotImplemented
788 return self._cparts < other._cparts
789
790 def __le__(self, other):
791 if not isinstance(other, PurePath) or self._flavour is not other._flavour:
792 return NotImplemented
793 return self._cparts <= other._cparts
794
795 def __gt__(self, other):
796 if not isinstance(other, PurePath) or self._flavour is not other._flavour:
797 return NotImplemented
798 return self._cparts > other._cparts
799
800 def __ge__(self, other):
801 if not isinstance(other, PurePath) or self._flavour is not other._flavour:
802 return NotImplemented
803 return self._cparts >= other._cparts
804
Batuhan Taşkaya526606b2019-12-08 23:31:15 +0300805 def __class_getitem__(cls, type):
806 return cls
807
Antoine Pitrou31119e42013-11-22 17:38:12 +0100808 drive = property(attrgetter('_drv'),
809 doc="""The drive prefix (letter or UNC path), if any.""")
810
811 root = property(attrgetter('_root'),
812 doc="""The root of the path, if any.""")
813
814 @property
815 def anchor(self):
816 """The concatenation of the drive and root, or ''."""
817 anchor = self._drv + self._root
818 return anchor
819
820 @property
821 def name(self):
822 """The final path component, if any."""
823 parts = self._parts
824 if len(parts) == (1 if (self._drv or self._root) else 0):
825 return ''
826 return parts[-1]
827
828 @property
829 def suffix(self):
Ram Rachum8d4fef42019-11-02 18:46:24 +0200830 """
831 The final component's last suffix, if any.
832
833 This includes the leading period. For example: '.txt'
834 """
Antoine Pitrou31119e42013-11-22 17:38:12 +0100835 name = self.name
836 i = name.rfind('.')
837 if 0 < i < len(name) - 1:
838 return name[i:]
839 else:
840 return ''
841
842 @property
843 def suffixes(self):
Ram Rachum8d4fef42019-11-02 18:46:24 +0200844 """
845 A list of the final component's suffixes, if any.
846
847 These include the leading periods. For example: ['.tar', '.gz']
848 """
Antoine Pitrou31119e42013-11-22 17:38:12 +0100849 name = self.name
850 if name.endswith('.'):
851 return []
852 name = name.lstrip('.')
853 return ['.' + suffix for suffix in name.split('.')[1:]]
854
855 @property
856 def stem(self):
857 """The final path component, minus its last suffix."""
858 name = self.name
859 i = name.rfind('.')
860 if 0 < i < len(name) - 1:
861 return name[:i]
862 else:
863 return name
864
865 def with_name(self, name):
866 """Return a new path with the file name changed."""
867 if not self.name:
868 raise ValueError("%r has an empty name" % (self,))
Antoine Pitrou7084e732014-07-06 21:31:12 -0400869 drv, root, parts = self._flavour.parse_parts((name,))
870 if (not name or name[-1] in [self._flavour.sep, self._flavour.altsep]
871 or drv or root or len(parts) != 1):
872 raise ValueError("Invalid name %r" % (name))
Antoine Pitrou31119e42013-11-22 17:38:12 +0100873 return self._from_parsed_parts(self._drv, self._root,
874 self._parts[:-1] + [name])
875
Tim Hoffmann8aea4b32020-04-19 17:29:49 +0200876 def with_stem(self, stem):
877 """Return a new path with the stem changed."""
878 return self.with_name(stem + self.suffix)
879
Antoine Pitrou31119e42013-11-22 17:38:12 +0100880 def with_suffix(self, suffix):
Stefan Otte46dc4e32018-08-03 22:49:42 +0200881 """Return a new path with the file suffix changed. If the path
882 has no suffix, add given suffix. If the given suffix is an empty
883 string, remove the suffix from the path.
884 """
Antoine Pitroue50dafc2014-07-06 21:37:15 -0400885 f = self._flavour
886 if f.sep in suffix or f.altsep and f.altsep in suffix:
Berker Peksag423d05f2018-08-11 08:45:06 +0300887 raise ValueError("Invalid suffix %r" % (suffix,))
Antoine Pitroue50dafc2014-07-06 21:37:15 -0400888 if suffix and not suffix.startswith('.') or suffix == '.':
Antoine Pitrou1b02da92014-01-03 00:07:17 +0100889 raise ValueError("Invalid suffix %r" % (suffix))
Antoine Pitrou31119e42013-11-22 17:38:12 +0100890 name = self.name
891 if not name:
892 raise ValueError("%r has an empty name" % (self,))
893 old_suffix = self.suffix
894 if not old_suffix:
895 name = name + suffix
896 else:
897 name = name[:-len(old_suffix)] + suffix
898 return self._from_parsed_parts(self._drv, self._root,
899 self._parts[:-1] + [name])
900
901 def relative_to(self, *other):
902 """Return the relative path to another path identified by the passed
903 arguments. If the operation is not possible (because this is not
904 a subpath of the other path), raise ValueError.
905 """
906 # For the purpose of this method, drive and root are considered
907 # separate parts, i.e.:
908 # Path('c:/').relative_to('c:') gives Path('/')
909 # Path('c:/').relative_to('/') raise ValueError
910 if not other:
911 raise TypeError("need at least one argument")
912 parts = self._parts
913 drv = self._drv
914 root = self._root
Antoine Pitrou156b3612013-12-28 19:49:04 +0100915 if root:
916 abs_parts = [drv, root] + parts[1:]
Antoine Pitrou31119e42013-11-22 17:38:12 +0100917 else:
918 abs_parts = parts
919 to_drv, to_root, to_parts = self._parse_args(other)
Antoine Pitrou156b3612013-12-28 19:49:04 +0100920 if to_root:
921 to_abs_parts = [to_drv, to_root] + to_parts[1:]
Antoine Pitrou31119e42013-11-22 17:38:12 +0100922 else:
923 to_abs_parts = to_parts
924 n = len(to_abs_parts)
Antoine Pitrou156b3612013-12-28 19:49:04 +0100925 cf = self._flavour.casefold_parts
926 if (root or drv) if n == 0 else cf(abs_parts[:n]) != cf(to_abs_parts):
Antoine Pitrou31119e42013-11-22 17:38:12 +0100927 formatted = self._format_parsed_parts(to_drv, to_root, to_parts)
Rotuna44832532020-05-25 21:42:28 +0200928 raise ValueError("{!r} is not in the subpath of {!r}"
929 " OR one path is relative and the other is absolute."
Antoine Pitrou31119e42013-11-22 17:38:12 +0100930 .format(str(self), str(formatted)))
Antoine Pitrou156b3612013-12-28 19:49:04 +0100931 return self._from_parsed_parts('', root if n == 1 else '',
932 abs_parts[n:])
Antoine Pitrou31119e42013-11-22 17:38:12 +0100933
Hai Shi82642a02019-08-13 14:54:02 -0500934 def is_relative_to(self, *other):
935 """Return True if the path is relative to another path or False.
936 """
937 try:
938 self.relative_to(*other)
939 return True
940 except ValueError:
941 return False
942
Antoine Pitrou31119e42013-11-22 17:38:12 +0100943 @property
944 def parts(self):
945 """An object providing sequence-like access to the
946 components in the filesystem path."""
947 # We cache the tuple to avoid building a new one each time .parts
948 # is accessed. XXX is this necessary?
949 try:
950 return self._pparts
951 except AttributeError:
952 self._pparts = tuple(self._parts)
953 return self._pparts
954
955 def joinpath(self, *args):
956 """Combine this path with one or several arguments, and return a
957 new path representing either a subpath (if all arguments are relative
958 paths) or a totally different path (if one of the arguments is
959 anchored).
960 """
961 return self._make_child(args)
962
963 def __truediv__(self, key):
aiudirog4c69be22019-08-08 01:41:10 -0400964 try:
965 return self._make_child((key,))
966 except TypeError:
967 return NotImplemented
Antoine Pitrou31119e42013-11-22 17:38:12 +0100968
969 def __rtruediv__(self, key):
aiudirog4c69be22019-08-08 01:41:10 -0400970 try:
971 return self._from_parts([key] + self._parts)
972 except TypeError:
973 return NotImplemented
Antoine Pitrou31119e42013-11-22 17:38:12 +0100974
975 @property
976 def parent(self):
977 """The logical parent of the path."""
978 drv = self._drv
979 root = self._root
980 parts = self._parts
981 if len(parts) == 1 and (drv or root):
982 return self
983 return self._from_parsed_parts(drv, root, parts[:-1])
984
985 @property
986 def parents(self):
987 """A sequence of this path's logical parents."""
988 return _PathParents(self)
989
990 def is_absolute(self):
991 """True if the path is absolute (has both a root and, if applicable,
992 a drive)."""
993 if not self._root:
994 return False
995 return not self._flavour.has_drv or bool(self._drv)
996
997 def is_reserved(self):
998 """Return True if the path contains one of the special names reserved
999 by the system, if any."""
1000 return self._flavour.is_reserved(self._parts)
1001
1002 def match(self, path_pattern):
1003 """
1004 Return True if this path matches the given pattern.
1005 """
1006 cf = self._flavour.casefold
1007 path_pattern = cf(path_pattern)
1008 drv, root, pat_parts = self._flavour.parse_parts((path_pattern,))
1009 if not pat_parts:
1010 raise ValueError("empty pattern")
1011 if drv and drv != cf(self._drv):
1012 return False
1013 if root and root != cf(self._root):
1014 return False
1015 parts = self._cparts
1016 if drv or root:
1017 if len(pat_parts) != len(parts):
1018 return False
1019 pat_parts = pat_parts[1:]
1020 elif len(pat_parts) > len(parts):
1021 return False
1022 for part, pat in zip(reversed(parts), reversed(pat_parts)):
1023 if not fnmatch.fnmatchcase(part, pat):
1024 return False
1025 return True
1026
Brett Cannon568be632016-06-10 12:20:49 -07001027# Can't subclass os.PathLike from PurePath and keep the constructor
1028# optimizations in PurePath._parse_args().
1029os.PathLike.register(PurePath)
1030
Antoine Pitrou31119e42013-11-22 17:38:12 +01001031
1032class PurePosixPath(PurePath):
chasondfa015c2018-02-19 08:36:32 +09001033 """PurePath subclass for non-Windows systems.
1034
1035 On a POSIX system, instantiating a PurePath should return this object.
1036 However, you can also instantiate it directly on any system.
1037 """
Antoine Pitrou31119e42013-11-22 17:38:12 +01001038 _flavour = _posix_flavour
1039 __slots__ = ()
1040
1041
1042class PureWindowsPath(PurePath):
chasondfa015c2018-02-19 08:36:32 +09001043 """PurePath subclass for Windows systems.
1044
1045 On a Windows system, instantiating a PurePath should return this object.
1046 However, you can also instantiate it directly on any system.
1047 """
Antoine Pitrou31119e42013-11-22 17:38:12 +01001048 _flavour = _windows_flavour
1049 __slots__ = ()
1050
1051
1052# Filesystem-accessing classes
1053
1054
1055class Path(PurePath):
chasondfa015c2018-02-19 08:36:32 +09001056 """PurePath subclass that can make system calls.
1057
1058 Path represents a filesystem path but unlike PurePath, also offers
1059 methods to do system calls on path objects. Depending on your system,
1060 instantiating a Path will return either a PosixPath or a WindowsPath
1061 object. You can also instantiate a PosixPath or WindowsPath directly,
1062 but cannot instantiate a WindowsPath on a POSIX system or vice versa.
1063 """
Antoine Pitrou31119e42013-11-22 17:38:12 +01001064 __slots__ = (
1065 '_accessor',
Antoine Pitrou31119e42013-11-22 17:38:12 +01001066 )
1067
1068 def __new__(cls, *args, **kwargs):
1069 if cls is Path:
1070 cls = WindowsPath if os.name == 'nt' else PosixPath
1071 self = cls._from_parts(args, init=False)
1072 if not self._flavour.is_supported:
1073 raise NotImplementedError("cannot instantiate %r on your system"
1074 % (cls.__name__,))
1075 self._init()
1076 return self
1077
1078 def _init(self,
1079 # Private non-constructor arguments
1080 template=None,
1081 ):
Antoine Pitrou31119e42013-11-22 17:38:12 +01001082 if template is not None:
1083 self._accessor = template._accessor
1084 else:
1085 self._accessor = _normal_accessor
1086
1087 def _make_child_relpath(self, part):
1088 # This is an optimization used for dir walking. `part` must be
1089 # a single part relative to this path.
1090 parts = self._parts + [part]
1091 return self._from_parsed_parts(self._drv, self._root, parts)
1092
1093 def __enter__(self):
Antoine Pitrou31119e42013-11-22 17:38:12 +01001094 return self
1095
1096 def __exit__(self, t, v, tb):
Barney Gale00002e62020-04-01 15:10:51 +01001097 # https://bugs.python.org/issue39682
1098 # In previous versions of pathlib, this method marked this path as
1099 # closed; subsequent attempts to perform I/O would raise an IOError.
1100 # This functionality was never documented, and had the effect of
1101 # making Path objects mutable, contrary to PEP 428. In Python 3.9 the
1102 # _closed attribute was removed, and this method made a no-op.
1103 # This method and __enter__()/__exit__() should be deprecated and
1104 # removed in the future.
1105 pass
Antoine Pitrou31119e42013-11-22 17:38:12 +01001106
1107 def _opener(self, name, flags, mode=0o666):
1108 # A stub for the opener argument to built-in open()
1109 return self._accessor.open(self, flags, mode)
1110
Antoine Pitrou4a60d422013-12-02 21:25:18 +01001111 def _raw_open(self, flags, mode=0o777):
1112 """
1113 Open the file pointed by this path and return a file descriptor,
1114 as os.open() does.
1115 """
Antoine Pitrou4a60d422013-12-02 21:25:18 +01001116 return self._accessor.open(self, flags, mode)
1117
Antoine Pitrou31119e42013-11-22 17:38:12 +01001118 # Public API
1119
1120 @classmethod
1121 def cwd(cls):
1122 """Return a new path pointing to the current working directory
1123 (as returned by os.getcwd()).
1124 """
1125 return cls(os.getcwd())
1126
Antoine Pitrou17cba7d2015-01-12 21:03:41 +01001127 @classmethod
1128 def home(cls):
1129 """Return a new path pointing to the user's home directory (as
1130 returned by os.path.expanduser('~')).
1131 """
1132 return cls(cls()._flavour.gethomedir(None))
1133
Antoine Pitrou43e3d942014-05-13 10:50:15 +02001134 def samefile(self, other_path):
Berker Peksag05492b82015-10-22 03:34:16 +03001135 """Return whether other_path is the same or not as this file
Berker Peksag267597f2015-10-21 20:10:24 +03001136 (as returned by os.path.samefile()).
Antoine Pitrou43e3d942014-05-13 10:50:15 +02001137 """
1138 st = self.stat()
1139 try:
1140 other_st = other_path.stat()
1141 except AttributeError:
Barney Gale5b1d9182020-04-17 18:47:27 +01001142 other_st = self._accessor.stat(other_path)
Antoine Pitrou43e3d942014-05-13 10:50:15 +02001143 return os.path.samestat(st, other_st)
1144
Antoine Pitrou31119e42013-11-22 17:38:12 +01001145 def iterdir(self):
1146 """Iterate over the files in this directory. Does not yield any
1147 result for the special paths '.' and '..'.
1148 """
Antoine Pitrou31119e42013-11-22 17:38:12 +01001149 for name in self._accessor.listdir(self):
1150 if name in {'.', '..'}:
1151 # Yielding a path object for these makes little sense
1152 continue
1153 yield self._make_child_relpath(name)
Antoine Pitrou31119e42013-11-22 17:38:12 +01001154
1155 def glob(self, pattern):
1156 """Iterate over this subtree and yield all existing files (of any
Eivind Teig537b6ca2019-02-11 11:47:09 +01001157 kind, including directories) matching the given relative pattern.
Antoine Pitrou31119e42013-11-22 17:38:12 +01001158 """
Serhiy Storchakaf4f445b2020-02-12 12:11:34 +02001159 sys.audit("pathlib.Path.glob", self, pattern)
Berker Peksag4a208e42016-01-30 17:50:48 +02001160 if not pattern:
1161 raise ValueError("Unacceptable pattern: {!r}".format(pattern))
Antoine Pitrou31119e42013-11-22 17:38:12 +01001162 drv, root, pattern_parts = self._flavour.parse_parts((pattern,))
1163 if drv or root:
1164 raise NotImplementedError("Non-relative patterns are unsupported")
Serhiy Storchaka10ecbad2019-10-21 20:37:15 +03001165 selector = _make_selector(tuple(pattern_parts), self._flavour)
Antoine Pitrou31119e42013-11-22 17:38:12 +01001166 for p in selector.select_from(self):
1167 yield p
1168
1169 def rglob(self, pattern):
1170 """Recursively yield all existing files (of any kind, including
Eivind Teig537b6ca2019-02-11 11:47:09 +01001171 directories) matching the given relative pattern, anywhere in
1172 this subtree.
Antoine Pitrou31119e42013-11-22 17:38:12 +01001173 """
Serhiy Storchakaf4f445b2020-02-12 12:11:34 +02001174 sys.audit("pathlib.Path.rglob", self, pattern)
Antoine Pitrou31119e42013-11-22 17:38:12 +01001175 drv, root, pattern_parts = self._flavour.parse_parts((pattern,))
1176 if drv or root:
1177 raise NotImplementedError("Non-relative patterns are unsupported")
Serhiy Storchaka10ecbad2019-10-21 20:37:15 +03001178 selector = _make_selector(("**",) + tuple(pattern_parts), self._flavour)
Antoine Pitrou31119e42013-11-22 17:38:12 +01001179 for p in selector.select_from(self):
1180 yield p
1181
1182 def absolute(self):
1183 """Return an absolute version of this path. This function works
1184 even if the path doesn't point to anything.
1185
1186 No normalization is done, i.e. all '.' and '..' will be kept along.
1187 Use resolve() to get the canonical path to a file.
1188 """
1189 # XXX untested yet!
Antoine Pitrou31119e42013-11-22 17:38:12 +01001190 if self.is_absolute():
1191 return self
1192 # FIXME this must defer to the specific flavour (and, under Windows,
1193 # use nt._getfullpathname())
1194 obj = self._from_parts([os.getcwd()] + self._parts, init=False)
1195 obj._init(template=self)
1196 return obj
1197
Steve Dower98eb3602016-11-09 12:58:17 -08001198 def resolve(self, strict=False):
Antoine Pitrou31119e42013-11-22 17:38:12 +01001199 """
1200 Make the path absolute, resolving all symlinks on the way and also
1201 normalizing it (for example turning slashes into backslashes under
1202 Windows).
1203 """
Steve Dower98eb3602016-11-09 12:58:17 -08001204 s = self._flavour.resolve(self, strict=strict)
Antoine Pitrou31119e42013-11-22 17:38:12 +01001205 if s is None:
1206 # No symlink resolution => for consistency, raise an error if
1207 # the path doesn't exist or is forbidden
1208 self.stat()
1209 s = str(self.absolute())
1210 # Now we have no symlinks in the path, it's safe to normalize it.
1211 normed = self._flavour.pathmod.normpath(s)
1212 obj = self._from_parts((normed,), init=False)
1213 obj._init(template=self)
1214 return obj
1215
1216 def stat(self):
1217 """
1218 Return the result of the stat() system call on this path, like
1219 os.stat() does.
1220 """
1221 return self._accessor.stat(self)
1222
1223 def owner(self):
1224 """
1225 Return the login name of the file owner.
1226 """
Barney Gale22386bb2020-04-17 17:41:07 +01001227 return self._accessor.owner(self)
Antoine Pitrou31119e42013-11-22 17:38:12 +01001228
1229 def group(self):
1230 """
1231 Return the group name of the file gid.
1232 """
Barney Gale22386bb2020-04-17 17:41:07 +01001233 return self._accessor.group(self)
Antoine Pitrou31119e42013-11-22 17:38:12 +01001234
Antoine Pitrou31119e42013-11-22 17:38:12 +01001235 def open(self, mode='r', buffering=-1, encoding=None,
1236 errors=None, newline=None):
1237 """
1238 Open the file pointed by this path and return a file object, as
1239 the built-in open() function does.
1240 """
Serhiy Storchaka62a99512017-03-25 13:42:11 +02001241 return io.open(self, mode, buffering, encoding, errors, newline,
Antoine Pitrou31119e42013-11-22 17:38:12 +01001242 opener=self._opener)
1243
Georg Brandlea683982014-10-01 19:12:33 +02001244 def read_bytes(self):
1245 """
1246 Open the file in bytes mode, read it, and close the file.
1247 """
1248 with self.open(mode='rb') as f:
1249 return f.read()
1250
1251 def read_text(self, encoding=None, errors=None):
1252 """
1253 Open the file in text mode, read it, and close the file.
1254 """
1255 with self.open(mode='r', encoding=encoding, errors=errors) as f:
1256 return f.read()
1257
1258 def write_bytes(self, data):
1259 """
1260 Open the file in bytes mode, write to it, and close the file.
1261 """
1262 # type-check for the buffer interface before truncating the file
1263 view = memoryview(data)
1264 with self.open(mode='wb') as f:
1265 return f.write(view)
1266
1267 def write_text(self, data, encoding=None, errors=None):
1268 """
1269 Open the file in text mode, write to it, and close the file.
1270 """
1271 if not isinstance(data, str):
1272 raise TypeError('data must be str, not %s' %
1273 data.__class__.__name__)
1274 with self.open(mode='w', encoding=encoding, errors=errors) as f:
1275 return f.write(data)
1276
Girtsa01ba332019-10-23 14:18:40 -07001277 def readlink(self):
1278 """
1279 Return the path to which the symbolic link points.
1280 """
1281 path = self._accessor.readlink(self)
1282 obj = self._from_parts((path,), init=False)
1283 obj._init(template=self)
1284 return obj
1285
Antoine Pitrou31119e42013-11-22 17:38:12 +01001286 def touch(self, mode=0o666, exist_ok=True):
1287 """
1288 Create this file with the given access mode, if it doesn't exist.
1289 """
Antoine Pitrou31119e42013-11-22 17:38:12 +01001290 if exist_ok:
1291 # First try to bump modification time
1292 # Implementation note: GNU touch uses the UTIME_NOW option of
1293 # the utimensat() / futimens() functions.
Antoine Pitrou31119e42013-11-22 17:38:12 +01001294 try:
Antoine Pitrou2cf39172013-11-23 15:25:59 +01001295 self._accessor.utime(self, None)
Antoine Pitrou31119e42013-11-22 17:38:12 +01001296 except OSError:
1297 # Avoid exception chaining
1298 pass
1299 else:
1300 return
1301 flags = os.O_CREAT | os.O_WRONLY
1302 if not exist_ok:
1303 flags |= os.O_EXCL
1304 fd = self._raw_open(flags, mode)
1305 os.close(fd)
1306
Barry Warsaw7c549c42014-08-05 11:28:12 -04001307 def mkdir(self, mode=0o777, parents=False, exist_ok=False):
Serhiy Storchakaaf7b9ec2017-03-24 20:51:53 +02001308 """
1309 Create a new directory at this given path.
1310 """
Serhiy Storchakaaf7b9ec2017-03-24 20:51:53 +02001311 try:
1312 self._accessor.mkdir(self, mode)
1313 except FileNotFoundError:
1314 if not parents or self.parent == self:
1315 raise
Armin Rigo22a594a2017-04-13 20:08:15 +02001316 self.parent.mkdir(parents=True, exist_ok=True)
1317 self.mkdir(mode, parents=False, exist_ok=exist_ok)
Serhiy Storchakaaf7b9ec2017-03-24 20:51:53 +02001318 except OSError:
1319 # Cannot rely on checking for EEXIST, since the operating system
1320 # could give priority to other errors like EACCES or EROFS
1321 if not exist_ok or not self.is_dir():
1322 raise
Antoine Pitrou31119e42013-11-22 17:38:12 +01001323
1324 def chmod(self, mode):
1325 """
1326 Change the permissions of the path, like os.chmod().
1327 """
Antoine Pitrou31119e42013-11-22 17:38:12 +01001328 self._accessor.chmod(self, mode)
1329
1330 def lchmod(self, mode):
1331 """
1332 Like chmod(), except if the path points to a symlink, the symlink's
1333 permissions are changed, rather than its target's.
1334 """
Antoine Pitrou31119e42013-11-22 17:38:12 +01001335 self._accessor.lchmod(self, mode)
1336
‮zlohhcuB treboRd9e006b2019-05-16 00:02:11 +02001337 def unlink(self, missing_ok=False):
Antoine Pitrou31119e42013-11-22 17:38:12 +01001338 """
1339 Remove this file or link.
1340 If the path is a directory, use rmdir() instead.
1341 """
‮zlohhcuB treboRd9e006b2019-05-16 00:02:11 +02001342 try:
1343 self._accessor.unlink(self)
1344 except FileNotFoundError:
1345 if not missing_ok:
1346 raise
Antoine Pitrou31119e42013-11-22 17:38:12 +01001347
1348 def rmdir(self):
1349 """
1350 Remove this directory. The directory must be empty.
1351 """
Antoine Pitrou31119e42013-11-22 17:38:12 +01001352 self._accessor.rmdir(self)
1353
1354 def lstat(self):
1355 """
1356 Like stat(), except if the path points to a symlink, the symlink's
1357 status information is returned, rather than its target's.
1358 """
Antoine Pitrou31119e42013-11-22 17:38:12 +01001359 return self._accessor.lstat(self)
1360
Joannah Nanjekye6b5b0132019-05-04 11:27:10 -04001361 def link_to(self, target):
1362 """
1363 Create a hard link pointing to a path named target.
1364 """
Joannah Nanjekye6b5b0132019-05-04 11:27:10 -04001365 self._accessor.link_to(self, target)
1366
Antoine Pitrou31119e42013-11-22 17:38:12 +01001367 def rename(self, target):
1368 """
hui shang088a09a2019-09-11 21:26:49 +08001369 Rename this path to the given path,
1370 and return a new Path instance pointing to the given path.
Antoine Pitrou31119e42013-11-22 17:38:12 +01001371 """
Antoine Pitrou31119e42013-11-22 17:38:12 +01001372 self._accessor.rename(self, target)
hui shang088a09a2019-09-11 21:26:49 +08001373 return self.__class__(target)
Antoine Pitrou31119e42013-11-22 17:38:12 +01001374
1375 def replace(self, target):
1376 """
1377 Rename this path to the given path, clobbering the existing
hui shang088a09a2019-09-11 21:26:49 +08001378 destination if it exists, and return a new Path instance
1379 pointing to the given path.
Antoine Pitrou31119e42013-11-22 17:38:12 +01001380 """
Antoine Pitrou31119e42013-11-22 17:38:12 +01001381 self._accessor.replace(self, target)
hui shang088a09a2019-09-11 21:26:49 +08001382 return self.__class__(target)
Antoine Pitrou31119e42013-11-22 17:38:12 +01001383
1384 def symlink_to(self, target, target_is_directory=False):
1385 """
1386 Make this path a symlink pointing to the given path.
1387 Note the order of arguments (self, target) is the reverse of os.symlink's.
1388 """
Antoine Pitrou31119e42013-11-22 17:38:12 +01001389 self._accessor.symlink(target, self, target_is_directory)
1390
1391 # Convenience functions for querying the stat results
1392
1393 def exists(self):
1394 """
1395 Whether this path exists.
1396 """
1397 try:
1398 self.stat()
1399 except OSError as e:
Steve Dower2f6fae62019-02-03 23:08:18 -08001400 if not _ignore_error(e):
Antoine Pitrou31119e42013-11-22 17:38:12 +01001401 raise
1402 return False
Serhiy Storchaka0185f342018-09-18 11:28:51 +03001403 except ValueError:
1404 # Non-encodable path
1405 return False
Antoine Pitrou31119e42013-11-22 17:38:12 +01001406 return True
1407
1408 def is_dir(self):
1409 """
1410 Whether this path is a directory.
1411 """
1412 try:
1413 return S_ISDIR(self.stat().st_mode)
1414 except OSError as e:
Steve Dower2f6fae62019-02-03 23:08:18 -08001415 if not _ignore_error(e):
Antoine Pitrou31119e42013-11-22 17:38:12 +01001416 raise
1417 # Path doesn't exist or is a broken symlink
1418 # (see https://bitbucket.org/pitrou/pathlib/issue/12/)
1419 return False
Serhiy Storchaka0185f342018-09-18 11:28:51 +03001420 except ValueError:
1421 # Non-encodable path
1422 return False
Antoine Pitrou31119e42013-11-22 17:38:12 +01001423
1424 def is_file(self):
1425 """
1426 Whether this path is a regular file (also True for symlinks pointing
1427 to regular files).
1428 """
1429 try:
1430 return S_ISREG(self.stat().st_mode)
1431 except OSError as e:
Steve Dower2f6fae62019-02-03 23:08:18 -08001432 if not _ignore_error(e):
Antoine Pitrou31119e42013-11-22 17:38:12 +01001433 raise
1434 # Path doesn't exist or is a broken symlink
1435 # (see https://bitbucket.org/pitrou/pathlib/issue/12/)
1436 return False
Serhiy Storchaka0185f342018-09-18 11:28:51 +03001437 except ValueError:
1438 # Non-encodable path
1439 return False
Antoine Pitrou31119e42013-11-22 17:38:12 +01001440
Cooper Lees173ff4a2017-08-01 15:35:45 -07001441 def is_mount(self):
1442 """
1443 Check if this path is a POSIX mount point
1444 """
1445 # Need to exist and be a dir
1446 if not self.exists() or not self.is_dir():
1447 return False
1448
Cooper Lees173ff4a2017-08-01 15:35:45 -07001449 try:
Barney Galec746c4f2020-04-17 18:42:06 +01001450 parent_dev = self.parent.stat().st_dev
Cooper Lees173ff4a2017-08-01 15:35:45 -07001451 except OSError:
1452 return False
1453
1454 dev = self.stat().st_dev
1455 if dev != parent_dev:
1456 return True
1457 ino = self.stat().st_ino
Barney Galec746c4f2020-04-17 18:42:06 +01001458 parent_ino = self.parent.stat().st_ino
Cooper Lees173ff4a2017-08-01 15:35:45 -07001459 return ino == parent_ino
1460
Antoine Pitrou31119e42013-11-22 17:38:12 +01001461 def is_symlink(self):
1462 """
1463 Whether this path is a symbolic link.
1464 """
1465 try:
1466 return S_ISLNK(self.lstat().st_mode)
1467 except OSError as e:
Steve Dower2f6fae62019-02-03 23:08:18 -08001468 if not _ignore_error(e):
Antoine Pitrou31119e42013-11-22 17:38:12 +01001469 raise
1470 # Path doesn't exist
1471 return False
Serhiy Storchaka0185f342018-09-18 11:28:51 +03001472 except ValueError:
1473 # Non-encodable path
1474 return False
Antoine Pitrou31119e42013-11-22 17:38:12 +01001475
1476 def is_block_device(self):
1477 """
1478 Whether this path is a block device.
1479 """
1480 try:
1481 return S_ISBLK(self.stat().st_mode)
1482 except OSError as e:
Steve Dower2f6fae62019-02-03 23:08:18 -08001483 if not _ignore_error(e):
Antoine Pitrou31119e42013-11-22 17:38:12 +01001484 raise
1485 # Path doesn't exist or is a broken symlink
1486 # (see https://bitbucket.org/pitrou/pathlib/issue/12/)
1487 return False
Serhiy Storchaka0185f342018-09-18 11:28:51 +03001488 except ValueError:
1489 # Non-encodable path
1490 return False
Antoine Pitrou31119e42013-11-22 17:38:12 +01001491
1492 def is_char_device(self):
1493 """
1494 Whether this path is a character device.
1495 """
1496 try:
1497 return S_ISCHR(self.stat().st_mode)
1498 except OSError as e:
Steve Dower2f6fae62019-02-03 23:08:18 -08001499 if not _ignore_error(e):
Antoine Pitrou31119e42013-11-22 17:38:12 +01001500 raise
1501 # Path doesn't exist or is a broken symlink
1502 # (see https://bitbucket.org/pitrou/pathlib/issue/12/)
1503 return False
Serhiy Storchaka0185f342018-09-18 11:28:51 +03001504 except ValueError:
1505 # Non-encodable path
1506 return False
Antoine Pitrou31119e42013-11-22 17:38:12 +01001507
1508 def is_fifo(self):
1509 """
1510 Whether this path is a FIFO.
1511 """
1512 try:
1513 return S_ISFIFO(self.stat().st_mode)
1514 except OSError as e:
Steve Dower2f6fae62019-02-03 23:08:18 -08001515 if not _ignore_error(e):
Antoine Pitrou31119e42013-11-22 17:38:12 +01001516 raise
1517 # Path doesn't exist or is a broken symlink
1518 # (see https://bitbucket.org/pitrou/pathlib/issue/12/)
1519 return False
Serhiy Storchaka0185f342018-09-18 11:28:51 +03001520 except ValueError:
1521 # Non-encodable path
1522 return False
Antoine Pitrou31119e42013-11-22 17:38:12 +01001523
1524 def is_socket(self):
1525 """
1526 Whether this path is a socket.
1527 """
1528 try:
1529 return S_ISSOCK(self.stat().st_mode)
1530 except OSError as e:
Steve Dower2f6fae62019-02-03 23:08:18 -08001531 if not _ignore_error(e):
Antoine Pitrou31119e42013-11-22 17:38:12 +01001532 raise
1533 # Path doesn't exist or is a broken symlink
1534 # (see https://bitbucket.org/pitrou/pathlib/issue/12/)
1535 return False
Serhiy Storchaka0185f342018-09-18 11:28:51 +03001536 except ValueError:
1537 # Non-encodable path
1538 return False
Antoine Pitrou31119e42013-11-22 17:38:12 +01001539
Antoine Pitrou8477ed62014-12-30 20:54:45 +01001540 def expanduser(self):
1541 """ Return a new path with expanded ~ and ~user constructs
1542 (as returned by os.path.expanduser)
1543 """
1544 if (not (self._drv or self._root) and
1545 self._parts and self._parts[0][:1] == '~'):
1546 homedir = self._flavour.gethomedir(self._parts[0][1:])
1547 return self._from_parts([homedir] + self._parts[1:])
1548
1549 return self
1550
Antoine Pitrou31119e42013-11-22 17:38:12 +01001551
1552class PosixPath(Path, PurePosixPath):
chasondfa015c2018-02-19 08:36:32 +09001553 """Path subclass for non-Windows systems.
1554
1555 On a POSIX system, instantiating a Path should return this object.
1556 """
Antoine Pitrou31119e42013-11-22 17:38:12 +01001557 __slots__ = ()
1558
1559class WindowsPath(Path, PureWindowsPath):
chasondfa015c2018-02-19 08:36:32 +09001560 """Path subclass for Windows systems.
1561
1562 On a Windows system, instantiating a Path should return this object.
1563 """
Antoine Pitrou31119e42013-11-22 17:38:12 +01001564 __slots__ = ()
Berker Peksag04d42292016-03-11 23:07:27 +02001565
Cooper Lees173ff4a2017-08-01 15:35:45 -07001566 def is_mount(self):
1567 raise NotImplementedError("Path.is_mount() is unsupported on this system")