blob: af310393c3e40efb2c532beca35795159c9ab385 [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):
Joshua Cannon45205842020-11-20 09:40:39 -0600633 if isinstance(idx, slice):
634 return tuple(self[i] for i in range(*idx.indices(len(self))))
Antoine Pitrou31119e42013-11-22 17:38:12 +0100635 if idx < 0 or idx >= len(self):
636 raise IndexError(idx)
637 return self._pathcls._from_parsed_parts(self._drv, self._root,
638 self._parts[:-idx - 1])
639
640 def __repr__(self):
641 return "<{}.parents>".format(self._pathcls.__name__)
642
643
644class PurePath(object):
chasondfa015c2018-02-19 08:36:32 +0900645 """Base class for manipulating paths without I/O.
646
647 PurePath represents a filesystem path and offers operations which
Antoine Pitrou31119e42013-11-22 17:38:12 +0100648 don't imply any actual filesystem I/O. Depending on your system,
649 instantiating a PurePath will return either a PurePosixPath or a
650 PureWindowsPath object. You can also instantiate either of these classes
651 directly, regardless of your system.
652 """
653 __slots__ = (
654 '_drv', '_root', '_parts',
655 '_str', '_hash', '_pparts', '_cached_cparts',
656 )
657
658 def __new__(cls, *args):
659 """Construct a PurePath from one or several strings and or existing
660 PurePath objects. The strings and path objects are combined so as
661 to yield a canonicalized path, which is incorporated into the
662 new PurePath object.
663 """
664 if cls is PurePath:
665 cls = PureWindowsPath if os.name == 'nt' else PurePosixPath
666 return cls._from_parts(args)
667
668 def __reduce__(self):
669 # Using the parts tuple helps share interned path parts
670 # when pickling related paths.
671 return (self.__class__, tuple(self._parts))
672
673 @classmethod
674 def _parse_args(cls, args):
675 # This is useful when you don't want to create an instance, just
676 # canonicalize some constructor arguments.
677 parts = []
678 for a in args:
679 if isinstance(a, PurePath):
680 parts += a._parts
Antoine Pitrou31119e42013-11-22 17:38:12 +0100681 else:
Brett Cannon568be632016-06-10 12:20:49 -0700682 a = os.fspath(a)
683 if isinstance(a, str):
684 # Force-cast str subclasses to str (issue #21127)
685 parts.append(str(a))
686 else:
687 raise TypeError(
688 "argument should be a str object or an os.PathLike "
689 "object returning str, not %r"
690 % type(a))
Antoine Pitrou31119e42013-11-22 17:38:12 +0100691 return cls._flavour.parse_parts(parts)
692
693 @classmethod
694 def _from_parts(cls, args, init=True):
695 # We need to call _parse_args on the instance, so as to get the
696 # right flavour.
697 self = object.__new__(cls)
698 drv, root, parts = self._parse_args(args)
699 self._drv = drv
700 self._root = root
701 self._parts = parts
702 if init:
703 self._init()
704 return self
705
706 @classmethod
707 def _from_parsed_parts(cls, drv, root, parts, init=True):
708 self = object.__new__(cls)
709 self._drv = drv
710 self._root = root
711 self._parts = parts
712 if init:
713 self._init()
714 return self
715
716 @classmethod
717 def _format_parsed_parts(cls, drv, root, parts):
718 if drv or root:
719 return drv + root + cls._flavour.join(parts[1:])
720 else:
721 return cls._flavour.join(parts)
722
723 def _init(self):
Martin Pantere26da7c2016-06-02 10:07:09 +0000724 # Overridden in concrete Path
Antoine Pitrou31119e42013-11-22 17:38:12 +0100725 pass
726
727 def _make_child(self, args):
728 drv, root, parts = self._parse_args(args)
729 drv, root, parts = self._flavour.join_parsed_parts(
730 self._drv, self._root, self._parts, drv, root, parts)
731 return self._from_parsed_parts(drv, root, parts)
732
733 def __str__(self):
734 """Return the string representation of the path, suitable for
735 passing to system calls."""
736 try:
737 return self._str
738 except AttributeError:
739 self._str = self._format_parsed_parts(self._drv, self._root,
740 self._parts) or '.'
741 return self._str
742
Brett Cannon568be632016-06-10 12:20:49 -0700743 def __fspath__(self):
744 return str(self)
745
Antoine Pitrou31119e42013-11-22 17:38:12 +0100746 def as_posix(self):
747 """Return the string representation of the path with forward (/)
748 slashes."""
749 f = self._flavour
750 return str(self).replace(f.sep, '/')
751
752 def __bytes__(self):
753 """Return the bytes representation of the path. This is only
754 recommended to use under Unix."""
Serhiy Storchaka62a99512017-03-25 13:42:11 +0200755 return os.fsencode(self)
Antoine Pitrou31119e42013-11-22 17:38:12 +0100756
757 def __repr__(self):
758 return "{}({!r})".format(self.__class__.__name__, self.as_posix())
759
760 def as_uri(self):
761 """Return the path as a 'file' URI."""
762 if not self.is_absolute():
763 raise ValueError("relative path can't be expressed as a file URI")
764 return self._flavour.make_uri(self)
765
766 @property
767 def _cparts(self):
768 # Cached casefolded parts, for hashing and comparison
769 try:
770 return self._cached_cparts
771 except AttributeError:
772 self._cached_cparts = self._flavour.casefold_parts(self._parts)
773 return self._cached_cparts
774
775 def __eq__(self, other):
776 if not isinstance(other, PurePath):
777 return NotImplemented
778 return self._cparts == other._cparts and self._flavour is other._flavour
779
Antoine Pitrou31119e42013-11-22 17:38:12 +0100780 def __hash__(self):
781 try:
782 return self._hash
783 except AttributeError:
784 self._hash = hash(tuple(self._cparts))
785 return self._hash
786
787 def __lt__(self, other):
788 if not isinstance(other, PurePath) or self._flavour is not other._flavour:
789 return NotImplemented
790 return self._cparts < other._cparts
791
792 def __le__(self, other):
793 if not isinstance(other, PurePath) or self._flavour is not other._flavour:
794 return NotImplemented
795 return self._cparts <= other._cparts
796
797 def __gt__(self, other):
798 if not isinstance(other, PurePath) or self._flavour is not other._flavour:
799 return NotImplemented
800 return self._cparts > other._cparts
801
802 def __ge__(self, other):
803 if not isinstance(other, PurePath) or self._flavour is not other._flavour:
804 return NotImplemented
805 return self._cparts >= other._cparts
806
Batuhan Taşkaya526606b2019-12-08 23:31:15 +0300807 def __class_getitem__(cls, type):
808 return cls
809
Antoine Pitrou31119e42013-11-22 17:38:12 +0100810 drive = property(attrgetter('_drv'),
811 doc="""The drive prefix (letter or UNC path), if any.""")
812
813 root = property(attrgetter('_root'),
814 doc="""The root of the path, if any.""")
815
816 @property
817 def anchor(self):
818 """The concatenation of the drive and root, or ''."""
819 anchor = self._drv + self._root
820 return anchor
821
822 @property
823 def name(self):
824 """The final path component, if any."""
825 parts = self._parts
826 if len(parts) == (1 if (self._drv or self._root) else 0):
827 return ''
828 return parts[-1]
829
830 @property
831 def suffix(self):
Ram Rachum8d4fef42019-11-02 18:46:24 +0200832 """
833 The final component's last suffix, if any.
834
835 This includes the leading period. For example: '.txt'
836 """
Antoine Pitrou31119e42013-11-22 17:38:12 +0100837 name = self.name
838 i = name.rfind('.')
839 if 0 < i < len(name) - 1:
840 return name[i:]
841 else:
842 return ''
843
844 @property
845 def suffixes(self):
Ram Rachum8d4fef42019-11-02 18:46:24 +0200846 """
847 A list of the final component's suffixes, if any.
848
849 These include the leading periods. For example: ['.tar', '.gz']
850 """
Antoine Pitrou31119e42013-11-22 17:38:12 +0100851 name = self.name
852 if name.endswith('.'):
853 return []
854 name = name.lstrip('.')
855 return ['.' + suffix for suffix in name.split('.')[1:]]
856
857 @property
858 def stem(self):
859 """The final path component, minus its last suffix."""
860 name = self.name
861 i = name.rfind('.')
862 if 0 < i < len(name) - 1:
863 return name[:i]
864 else:
865 return name
866
867 def with_name(self, name):
868 """Return a new path with the file name changed."""
869 if not self.name:
870 raise ValueError("%r has an empty name" % (self,))
Antoine Pitrou7084e732014-07-06 21:31:12 -0400871 drv, root, parts = self._flavour.parse_parts((name,))
872 if (not name or name[-1] in [self._flavour.sep, self._flavour.altsep]
873 or drv or root or len(parts) != 1):
874 raise ValueError("Invalid name %r" % (name))
Antoine Pitrou31119e42013-11-22 17:38:12 +0100875 return self._from_parsed_parts(self._drv, self._root,
876 self._parts[:-1] + [name])
877
Tim Hoffmann8aea4b32020-04-19 17:29:49 +0200878 def with_stem(self, stem):
879 """Return a new path with the stem changed."""
880 return self.with_name(stem + self.suffix)
881
Antoine Pitrou31119e42013-11-22 17:38:12 +0100882 def with_suffix(self, suffix):
Stefan Otte46dc4e32018-08-03 22:49:42 +0200883 """Return a new path with the file suffix changed. If the path
884 has no suffix, add given suffix. If the given suffix is an empty
885 string, remove the suffix from the path.
886 """
Antoine Pitroue50dafc2014-07-06 21:37:15 -0400887 f = self._flavour
888 if f.sep in suffix or f.altsep and f.altsep in suffix:
Berker Peksag423d05f2018-08-11 08:45:06 +0300889 raise ValueError("Invalid suffix %r" % (suffix,))
Antoine Pitroue50dafc2014-07-06 21:37:15 -0400890 if suffix and not suffix.startswith('.') or suffix == '.':
Antoine Pitrou1b02da92014-01-03 00:07:17 +0100891 raise ValueError("Invalid suffix %r" % (suffix))
Antoine Pitrou31119e42013-11-22 17:38:12 +0100892 name = self.name
893 if not name:
894 raise ValueError("%r has an empty name" % (self,))
895 old_suffix = self.suffix
896 if not old_suffix:
897 name = name + suffix
898 else:
899 name = name[:-len(old_suffix)] + suffix
900 return self._from_parsed_parts(self._drv, self._root,
901 self._parts[:-1] + [name])
902
903 def relative_to(self, *other):
904 """Return the relative path to another path identified by the passed
905 arguments. If the operation is not possible (because this is not
906 a subpath of the other path), raise ValueError.
907 """
908 # For the purpose of this method, drive and root are considered
909 # separate parts, i.e.:
910 # Path('c:/').relative_to('c:') gives Path('/')
911 # Path('c:/').relative_to('/') raise ValueError
912 if not other:
913 raise TypeError("need at least one argument")
914 parts = self._parts
915 drv = self._drv
916 root = self._root
Antoine Pitrou156b3612013-12-28 19:49:04 +0100917 if root:
918 abs_parts = [drv, root] + parts[1:]
Antoine Pitrou31119e42013-11-22 17:38:12 +0100919 else:
920 abs_parts = parts
921 to_drv, to_root, to_parts = self._parse_args(other)
Antoine Pitrou156b3612013-12-28 19:49:04 +0100922 if to_root:
923 to_abs_parts = [to_drv, to_root] + to_parts[1:]
Antoine Pitrou31119e42013-11-22 17:38:12 +0100924 else:
925 to_abs_parts = to_parts
926 n = len(to_abs_parts)
Antoine Pitrou156b3612013-12-28 19:49:04 +0100927 cf = self._flavour.casefold_parts
928 if (root or drv) if n == 0 else cf(abs_parts[:n]) != cf(to_abs_parts):
Antoine Pitrou31119e42013-11-22 17:38:12 +0100929 formatted = self._format_parsed_parts(to_drv, to_root, to_parts)
Rotuna44832532020-05-25 21:42:28 +0200930 raise ValueError("{!r} is not in the subpath of {!r}"
931 " OR one path is relative and the other is absolute."
Antoine Pitrou31119e42013-11-22 17:38:12 +0100932 .format(str(self), str(formatted)))
Antoine Pitrou156b3612013-12-28 19:49:04 +0100933 return self._from_parsed_parts('', root if n == 1 else '',
934 abs_parts[n:])
Antoine Pitrou31119e42013-11-22 17:38:12 +0100935
Hai Shi82642a02019-08-13 14:54:02 -0500936 def is_relative_to(self, *other):
937 """Return True if the path is relative to another path or False.
938 """
939 try:
940 self.relative_to(*other)
941 return True
942 except ValueError:
943 return False
944
Antoine Pitrou31119e42013-11-22 17:38:12 +0100945 @property
946 def parts(self):
947 """An object providing sequence-like access to the
948 components in the filesystem path."""
949 # We cache the tuple to avoid building a new one each time .parts
950 # is accessed. XXX is this necessary?
951 try:
952 return self._pparts
953 except AttributeError:
954 self._pparts = tuple(self._parts)
955 return self._pparts
956
957 def joinpath(self, *args):
958 """Combine this path with one or several arguments, and return a
959 new path representing either a subpath (if all arguments are relative
960 paths) or a totally different path (if one of the arguments is
961 anchored).
962 """
963 return self._make_child(args)
964
965 def __truediv__(self, key):
aiudirog4c69be22019-08-08 01:41:10 -0400966 try:
967 return self._make_child((key,))
968 except TypeError:
969 return NotImplemented
Antoine Pitrou31119e42013-11-22 17:38:12 +0100970
971 def __rtruediv__(self, key):
aiudirog4c69be22019-08-08 01:41:10 -0400972 try:
973 return self._from_parts([key] + self._parts)
974 except TypeError:
975 return NotImplemented
Antoine Pitrou31119e42013-11-22 17:38:12 +0100976
977 @property
978 def parent(self):
979 """The logical parent of the path."""
980 drv = self._drv
981 root = self._root
982 parts = self._parts
983 if len(parts) == 1 and (drv or root):
984 return self
985 return self._from_parsed_parts(drv, root, parts[:-1])
986
987 @property
988 def parents(self):
989 """A sequence of this path's logical parents."""
990 return _PathParents(self)
991
992 def is_absolute(self):
993 """True if the path is absolute (has both a root and, if applicable,
994 a drive)."""
995 if not self._root:
996 return False
997 return not self._flavour.has_drv or bool(self._drv)
998
999 def is_reserved(self):
1000 """Return True if the path contains one of the special names reserved
1001 by the system, if any."""
1002 return self._flavour.is_reserved(self._parts)
1003
1004 def match(self, path_pattern):
1005 """
1006 Return True if this path matches the given pattern.
1007 """
1008 cf = self._flavour.casefold
1009 path_pattern = cf(path_pattern)
1010 drv, root, pat_parts = self._flavour.parse_parts((path_pattern,))
1011 if not pat_parts:
1012 raise ValueError("empty pattern")
1013 if drv and drv != cf(self._drv):
1014 return False
1015 if root and root != cf(self._root):
1016 return False
1017 parts = self._cparts
1018 if drv or root:
1019 if len(pat_parts) != len(parts):
1020 return False
1021 pat_parts = pat_parts[1:]
1022 elif len(pat_parts) > len(parts):
1023 return False
1024 for part, pat in zip(reversed(parts), reversed(pat_parts)):
1025 if not fnmatch.fnmatchcase(part, pat):
1026 return False
1027 return True
1028
Brett Cannon568be632016-06-10 12:20:49 -07001029# Can't subclass os.PathLike from PurePath and keep the constructor
1030# optimizations in PurePath._parse_args().
1031os.PathLike.register(PurePath)
1032
Antoine Pitrou31119e42013-11-22 17:38:12 +01001033
1034class PurePosixPath(PurePath):
chasondfa015c2018-02-19 08:36:32 +09001035 """PurePath subclass for non-Windows systems.
1036
1037 On a POSIX system, instantiating a PurePath should return this object.
1038 However, you can also instantiate it directly on any system.
1039 """
Antoine Pitrou31119e42013-11-22 17:38:12 +01001040 _flavour = _posix_flavour
1041 __slots__ = ()
1042
1043
1044class PureWindowsPath(PurePath):
chasondfa015c2018-02-19 08:36:32 +09001045 """PurePath subclass for Windows systems.
1046
1047 On a Windows system, instantiating a PurePath should return this object.
1048 However, you can also instantiate it directly on any system.
1049 """
Antoine Pitrou31119e42013-11-22 17:38:12 +01001050 _flavour = _windows_flavour
1051 __slots__ = ()
1052
1053
1054# Filesystem-accessing classes
1055
1056
1057class Path(PurePath):
chasondfa015c2018-02-19 08:36:32 +09001058 """PurePath subclass that can make system calls.
1059
1060 Path represents a filesystem path but unlike PurePath, also offers
1061 methods to do system calls on path objects. Depending on your system,
1062 instantiating a Path will return either a PosixPath or a WindowsPath
1063 object. You can also instantiate a PosixPath or WindowsPath directly,
1064 but cannot instantiate a WindowsPath on a POSIX system or vice versa.
1065 """
Antoine Pitrou31119e42013-11-22 17:38:12 +01001066 __slots__ = (
1067 '_accessor',
Antoine Pitrou31119e42013-11-22 17:38:12 +01001068 )
1069
1070 def __new__(cls, *args, **kwargs):
1071 if cls is Path:
1072 cls = WindowsPath if os.name == 'nt' else PosixPath
1073 self = cls._from_parts(args, init=False)
1074 if not self._flavour.is_supported:
1075 raise NotImplementedError("cannot instantiate %r on your system"
1076 % (cls.__name__,))
1077 self._init()
1078 return self
1079
1080 def _init(self,
1081 # Private non-constructor arguments
1082 template=None,
1083 ):
Antoine Pitrou31119e42013-11-22 17:38:12 +01001084 if template is not None:
1085 self._accessor = template._accessor
1086 else:
1087 self._accessor = _normal_accessor
1088
1089 def _make_child_relpath(self, part):
1090 # This is an optimization used for dir walking. `part` must be
1091 # a single part relative to this path.
1092 parts = self._parts + [part]
1093 return self._from_parsed_parts(self._drv, self._root, parts)
1094
1095 def __enter__(self):
Antoine Pitrou31119e42013-11-22 17:38:12 +01001096 return self
1097
1098 def __exit__(self, t, v, tb):
Barney Gale00002e62020-04-01 15:10:51 +01001099 # https://bugs.python.org/issue39682
1100 # In previous versions of pathlib, this method marked this path as
1101 # closed; subsequent attempts to perform I/O would raise an IOError.
1102 # This functionality was never documented, and had the effect of
1103 # making Path objects mutable, contrary to PEP 428. In Python 3.9 the
1104 # _closed attribute was removed, and this method made a no-op.
1105 # This method and __enter__()/__exit__() should be deprecated and
1106 # removed in the future.
1107 pass
Antoine Pitrou31119e42013-11-22 17:38:12 +01001108
1109 def _opener(self, name, flags, mode=0o666):
1110 # A stub for the opener argument to built-in open()
1111 return self._accessor.open(self, flags, mode)
1112
Antoine Pitrou4a60d422013-12-02 21:25:18 +01001113 def _raw_open(self, flags, mode=0o777):
1114 """
1115 Open the file pointed by this path and return a file descriptor,
1116 as os.open() does.
1117 """
Antoine Pitrou4a60d422013-12-02 21:25:18 +01001118 return self._accessor.open(self, flags, mode)
1119
Antoine Pitrou31119e42013-11-22 17:38:12 +01001120 # Public API
1121
1122 @classmethod
1123 def cwd(cls):
1124 """Return a new path pointing to the current working directory
1125 (as returned by os.getcwd()).
1126 """
1127 return cls(os.getcwd())
1128
Antoine Pitrou17cba7d2015-01-12 21:03:41 +01001129 @classmethod
1130 def home(cls):
1131 """Return a new path pointing to the user's home directory (as
1132 returned by os.path.expanduser('~')).
1133 """
1134 return cls(cls()._flavour.gethomedir(None))
1135
Antoine Pitrou43e3d942014-05-13 10:50:15 +02001136 def samefile(self, other_path):
Berker Peksag05492b82015-10-22 03:34:16 +03001137 """Return whether other_path is the same or not as this file
Berker Peksag267597f2015-10-21 20:10:24 +03001138 (as returned by os.path.samefile()).
Antoine Pitrou43e3d942014-05-13 10:50:15 +02001139 """
1140 st = self.stat()
1141 try:
1142 other_st = other_path.stat()
1143 except AttributeError:
Barney Gale5b1d9182020-04-17 18:47:27 +01001144 other_st = self._accessor.stat(other_path)
Antoine Pitrou43e3d942014-05-13 10:50:15 +02001145 return os.path.samestat(st, other_st)
1146
Antoine Pitrou31119e42013-11-22 17:38:12 +01001147 def iterdir(self):
1148 """Iterate over the files in this directory. Does not yield any
1149 result for the special paths '.' and '..'.
1150 """
Antoine Pitrou31119e42013-11-22 17:38:12 +01001151 for name in self._accessor.listdir(self):
1152 if name in {'.', '..'}:
1153 # Yielding a path object for these makes little sense
1154 continue
1155 yield self._make_child_relpath(name)
Antoine Pitrou31119e42013-11-22 17:38:12 +01001156
1157 def glob(self, pattern):
1158 """Iterate over this subtree and yield all existing files (of any
Eivind Teig537b6ca2019-02-11 11:47:09 +01001159 kind, including directories) matching the given relative pattern.
Antoine Pitrou31119e42013-11-22 17:38:12 +01001160 """
Serhiy Storchakaf4f445b2020-02-12 12:11:34 +02001161 sys.audit("pathlib.Path.glob", self, pattern)
Berker Peksag4a208e42016-01-30 17:50:48 +02001162 if not pattern:
1163 raise ValueError("Unacceptable pattern: {!r}".format(pattern))
Antoine Pitrou31119e42013-11-22 17:38:12 +01001164 drv, root, pattern_parts = self._flavour.parse_parts((pattern,))
1165 if drv or root:
1166 raise NotImplementedError("Non-relative patterns are unsupported")
Serhiy Storchaka10ecbad2019-10-21 20:37:15 +03001167 selector = _make_selector(tuple(pattern_parts), self._flavour)
Antoine Pitrou31119e42013-11-22 17:38:12 +01001168 for p in selector.select_from(self):
1169 yield p
1170
1171 def rglob(self, pattern):
1172 """Recursively yield all existing files (of any kind, including
Eivind Teig537b6ca2019-02-11 11:47:09 +01001173 directories) matching the given relative pattern, anywhere in
1174 this subtree.
Antoine Pitrou31119e42013-11-22 17:38:12 +01001175 """
Serhiy Storchakaf4f445b2020-02-12 12:11:34 +02001176 sys.audit("pathlib.Path.rglob", self, pattern)
Antoine Pitrou31119e42013-11-22 17:38:12 +01001177 drv, root, pattern_parts = self._flavour.parse_parts((pattern,))
1178 if drv or root:
1179 raise NotImplementedError("Non-relative patterns are unsupported")
Serhiy Storchaka10ecbad2019-10-21 20:37:15 +03001180 selector = _make_selector(("**",) + tuple(pattern_parts), self._flavour)
Antoine Pitrou31119e42013-11-22 17:38:12 +01001181 for p in selector.select_from(self):
1182 yield p
1183
1184 def absolute(self):
1185 """Return an absolute version of this path. This function works
1186 even if the path doesn't point to anything.
1187
1188 No normalization is done, i.e. all '.' and '..' will be kept along.
1189 Use resolve() to get the canonical path to a file.
1190 """
1191 # XXX untested yet!
Antoine Pitrou31119e42013-11-22 17:38:12 +01001192 if self.is_absolute():
1193 return self
1194 # FIXME this must defer to the specific flavour (and, under Windows,
1195 # use nt._getfullpathname())
1196 obj = self._from_parts([os.getcwd()] + self._parts, init=False)
1197 obj._init(template=self)
1198 return obj
1199
Steve Dower98eb3602016-11-09 12:58:17 -08001200 def resolve(self, strict=False):
Antoine Pitrou31119e42013-11-22 17:38:12 +01001201 """
1202 Make the path absolute, resolving all symlinks on the way and also
1203 normalizing it (for example turning slashes into backslashes under
1204 Windows).
1205 """
Steve Dower98eb3602016-11-09 12:58:17 -08001206 s = self._flavour.resolve(self, strict=strict)
Antoine Pitrou31119e42013-11-22 17:38:12 +01001207 if s is None:
1208 # No symlink resolution => for consistency, raise an error if
1209 # the path doesn't exist or is forbidden
1210 self.stat()
1211 s = str(self.absolute())
1212 # Now we have no symlinks in the path, it's safe to normalize it.
1213 normed = self._flavour.pathmod.normpath(s)
1214 obj = self._from_parts((normed,), init=False)
1215 obj._init(template=self)
1216 return obj
1217
1218 def stat(self):
1219 """
1220 Return the result of the stat() system call on this path, like
1221 os.stat() does.
1222 """
1223 return self._accessor.stat(self)
1224
1225 def owner(self):
1226 """
1227 Return the login name of the file owner.
1228 """
Barney Gale22386bb2020-04-17 17:41:07 +01001229 return self._accessor.owner(self)
Antoine Pitrou31119e42013-11-22 17:38:12 +01001230
1231 def group(self):
1232 """
1233 Return the group name of the file gid.
1234 """
Barney Gale22386bb2020-04-17 17:41:07 +01001235 return self._accessor.group(self)
Antoine Pitrou31119e42013-11-22 17:38:12 +01001236
Antoine Pitrou31119e42013-11-22 17:38:12 +01001237 def open(self, mode='r', buffering=-1, encoding=None,
1238 errors=None, newline=None):
1239 """
1240 Open the file pointed by this path and return a file object, as
1241 the built-in open() function does.
1242 """
Serhiy Storchaka62a99512017-03-25 13:42:11 +02001243 return io.open(self, mode, buffering, encoding, errors, newline,
Antoine Pitrou31119e42013-11-22 17:38:12 +01001244 opener=self._opener)
1245
Georg Brandlea683982014-10-01 19:12:33 +02001246 def read_bytes(self):
1247 """
1248 Open the file in bytes mode, read it, and close the file.
1249 """
1250 with self.open(mode='rb') as f:
1251 return f.read()
1252
1253 def read_text(self, encoding=None, errors=None):
1254 """
1255 Open the file in text mode, read it, and close the file.
1256 """
1257 with self.open(mode='r', encoding=encoding, errors=errors) as f:
1258 return f.read()
1259
1260 def write_bytes(self, data):
1261 """
1262 Open the file in bytes mode, write to it, and close the file.
1263 """
1264 # type-check for the buffer interface before truncating the file
1265 view = memoryview(data)
1266 with self.open(mode='wb') as f:
1267 return f.write(view)
1268
Максим5f227412020-10-21 05:08:19 +03001269 def write_text(self, data, encoding=None, errors=None, newline=None):
Georg Brandlea683982014-10-01 19:12:33 +02001270 """
1271 Open the file in text mode, write to it, and close the file.
1272 """
1273 if not isinstance(data, str):
1274 raise TypeError('data must be str, not %s' %
1275 data.__class__.__name__)
Максим5f227412020-10-21 05:08:19 +03001276 with self.open(mode='w', encoding=encoding, errors=errors, newline=newline) as f:
Georg Brandlea683982014-10-01 19:12:33 +02001277 return f.write(data)
1278
Girtsa01ba332019-10-23 14:18:40 -07001279 def readlink(self):
1280 """
1281 Return the path to which the symbolic link points.
1282 """
1283 path = self._accessor.readlink(self)
1284 obj = self._from_parts((path,), init=False)
1285 obj._init(template=self)
1286 return obj
1287
Antoine Pitrou31119e42013-11-22 17:38:12 +01001288 def touch(self, mode=0o666, exist_ok=True):
1289 """
1290 Create this file with the given access mode, if it doesn't exist.
1291 """
Antoine Pitrou31119e42013-11-22 17:38:12 +01001292 if exist_ok:
1293 # First try to bump modification time
1294 # Implementation note: GNU touch uses the UTIME_NOW option of
1295 # the utimensat() / futimens() functions.
Antoine Pitrou31119e42013-11-22 17:38:12 +01001296 try:
Antoine Pitrou2cf39172013-11-23 15:25:59 +01001297 self._accessor.utime(self, None)
Antoine Pitrou31119e42013-11-22 17:38:12 +01001298 except OSError:
1299 # Avoid exception chaining
1300 pass
1301 else:
1302 return
1303 flags = os.O_CREAT | os.O_WRONLY
1304 if not exist_ok:
1305 flags |= os.O_EXCL
1306 fd = self._raw_open(flags, mode)
1307 os.close(fd)
1308
Barry Warsaw7c549c42014-08-05 11:28:12 -04001309 def mkdir(self, mode=0o777, parents=False, exist_ok=False):
Serhiy Storchakaaf7b9ec2017-03-24 20:51:53 +02001310 """
1311 Create a new directory at this given path.
1312 """
Serhiy Storchakaaf7b9ec2017-03-24 20:51:53 +02001313 try:
1314 self._accessor.mkdir(self, mode)
1315 except FileNotFoundError:
1316 if not parents or self.parent == self:
1317 raise
Armin Rigo22a594a2017-04-13 20:08:15 +02001318 self.parent.mkdir(parents=True, exist_ok=True)
1319 self.mkdir(mode, parents=False, exist_ok=exist_ok)
Serhiy Storchakaaf7b9ec2017-03-24 20:51:53 +02001320 except OSError:
1321 # Cannot rely on checking for EEXIST, since the operating system
1322 # could give priority to other errors like EACCES or EROFS
1323 if not exist_ok or not self.is_dir():
1324 raise
Antoine Pitrou31119e42013-11-22 17:38:12 +01001325
1326 def chmod(self, mode):
1327 """
1328 Change the permissions of the path, like os.chmod().
1329 """
Antoine Pitrou31119e42013-11-22 17:38:12 +01001330 self._accessor.chmod(self, mode)
1331
1332 def lchmod(self, mode):
1333 """
1334 Like chmod(), except if the path points to a symlink, the symlink's
1335 permissions are changed, rather than its target's.
1336 """
Antoine Pitrou31119e42013-11-22 17:38:12 +01001337 self._accessor.lchmod(self, mode)
1338
‮zlohhcuB treboRd9e006b2019-05-16 00:02:11 +02001339 def unlink(self, missing_ok=False):
Antoine Pitrou31119e42013-11-22 17:38:12 +01001340 """
1341 Remove this file or link.
1342 If the path is a directory, use rmdir() instead.
1343 """
‮zlohhcuB treboRd9e006b2019-05-16 00:02:11 +02001344 try:
1345 self._accessor.unlink(self)
1346 except FileNotFoundError:
1347 if not missing_ok:
1348 raise
Antoine Pitrou31119e42013-11-22 17:38:12 +01001349
1350 def rmdir(self):
1351 """
1352 Remove this directory. The directory must be empty.
1353 """
Antoine Pitrou31119e42013-11-22 17:38:12 +01001354 self._accessor.rmdir(self)
1355
1356 def lstat(self):
1357 """
1358 Like stat(), except if the path points to a symlink, the symlink's
1359 status information is returned, rather than its target's.
1360 """
Antoine Pitrou31119e42013-11-22 17:38:12 +01001361 return self._accessor.lstat(self)
1362
Joannah Nanjekye6b5b0132019-05-04 11:27:10 -04001363 def link_to(self, target):
1364 """
1365 Create a hard link pointing to a path named target.
1366 """
Joannah Nanjekye6b5b0132019-05-04 11:27:10 -04001367 self._accessor.link_to(self, target)
1368
Antoine Pitrou31119e42013-11-22 17:38:12 +01001369 def rename(self, target):
1370 """
Ram Rachumf97e42e2020-10-03 12:52:13 +03001371 Rename this path to the target path.
1372
1373 The target path may be absolute or relative. Relative paths are
1374 interpreted relative to the current working directory, *not* the
1375 directory of the Path object.
1376
1377 Returns the new Path instance pointing to the target path.
Antoine Pitrou31119e42013-11-22 17:38:12 +01001378 """
Antoine Pitrou31119e42013-11-22 17:38:12 +01001379 self._accessor.rename(self, target)
hui shang088a09a2019-09-11 21:26:49 +08001380 return self.__class__(target)
Antoine Pitrou31119e42013-11-22 17:38:12 +01001381
1382 def replace(self, target):
1383 """
Ram Rachumf97e42e2020-10-03 12:52:13 +03001384 Rename this path to the target path, overwriting if that path exists.
1385
1386 The target path may be absolute or relative. Relative paths are
1387 interpreted relative to the current working directory, *not* the
1388 directory of the Path object.
1389
1390 Returns the new Path instance pointing to the target path.
Antoine Pitrou31119e42013-11-22 17:38:12 +01001391 """
Antoine Pitrou31119e42013-11-22 17:38:12 +01001392 self._accessor.replace(self, target)
hui shang088a09a2019-09-11 21:26:49 +08001393 return self.__class__(target)
Antoine Pitrou31119e42013-11-22 17:38:12 +01001394
1395 def symlink_to(self, target, target_is_directory=False):
1396 """
1397 Make this path a symlink pointing to the given path.
1398 Note the order of arguments (self, target) is the reverse of os.symlink's.
1399 """
Antoine Pitrou31119e42013-11-22 17:38:12 +01001400 self._accessor.symlink(target, self, target_is_directory)
1401
1402 # Convenience functions for querying the stat results
1403
1404 def exists(self):
1405 """
1406 Whether this path exists.
1407 """
1408 try:
1409 self.stat()
1410 except OSError as e:
Steve Dower2f6fae62019-02-03 23:08:18 -08001411 if not _ignore_error(e):
Antoine Pitrou31119e42013-11-22 17:38:12 +01001412 raise
1413 return False
Serhiy Storchaka0185f342018-09-18 11:28:51 +03001414 except ValueError:
1415 # Non-encodable path
1416 return False
Antoine Pitrou31119e42013-11-22 17:38:12 +01001417 return True
1418
1419 def is_dir(self):
1420 """
1421 Whether this path is a directory.
1422 """
1423 try:
1424 return S_ISDIR(self.stat().st_mode)
1425 except OSError as e:
Steve Dower2f6fae62019-02-03 23:08:18 -08001426 if not _ignore_error(e):
Antoine Pitrou31119e42013-11-22 17:38:12 +01001427 raise
1428 # Path doesn't exist or is a broken symlink
1429 # (see https://bitbucket.org/pitrou/pathlib/issue/12/)
1430 return False
Serhiy Storchaka0185f342018-09-18 11:28:51 +03001431 except ValueError:
1432 # Non-encodable path
1433 return False
Antoine Pitrou31119e42013-11-22 17:38:12 +01001434
1435 def is_file(self):
1436 """
1437 Whether this path is a regular file (also True for symlinks pointing
1438 to regular files).
1439 """
1440 try:
1441 return S_ISREG(self.stat().st_mode)
1442 except OSError as e:
Steve Dower2f6fae62019-02-03 23:08:18 -08001443 if not _ignore_error(e):
Antoine Pitrou31119e42013-11-22 17:38:12 +01001444 raise
1445 # Path doesn't exist or is a broken symlink
1446 # (see https://bitbucket.org/pitrou/pathlib/issue/12/)
1447 return False
Serhiy Storchaka0185f342018-09-18 11:28:51 +03001448 except ValueError:
1449 # Non-encodable path
1450 return False
Antoine Pitrou31119e42013-11-22 17:38:12 +01001451
Cooper Lees173ff4a2017-08-01 15:35:45 -07001452 def is_mount(self):
1453 """
1454 Check if this path is a POSIX mount point
1455 """
1456 # Need to exist and be a dir
1457 if not self.exists() or not self.is_dir():
1458 return False
1459
Cooper Lees173ff4a2017-08-01 15:35:45 -07001460 try:
Barney Galec746c4f2020-04-17 18:42:06 +01001461 parent_dev = self.parent.stat().st_dev
Cooper Lees173ff4a2017-08-01 15:35:45 -07001462 except OSError:
1463 return False
1464
1465 dev = self.stat().st_dev
1466 if dev != parent_dev:
1467 return True
1468 ino = self.stat().st_ino
Barney Galec746c4f2020-04-17 18:42:06 +01001469 parent_ino = self.parent.stat().st_ino
Cooper Lees173ff4a2017-08-01 15:35:45 -07001470 return ino == parent_ino
1471
Antoine Pitrou31119e42013-11-22 17:38:12 +01001472 def is_symlink(self):
1473 """
1474 Whether this path is a symbolic link.
1475 """
1476 try:
1477 return S_ISLNK(self.lstat().st_mode)
1478 except OSError as e:
Steve Dower2f6fae62019-02-03 23:08:18 -08001479 if not _ignore_error(e):
Antoine Pitrou31119e42013-11-22 17:38:12 +01001480 raise
1481 # Path doesn't exist
1482 return False
Serhiy Storchaka0185f342018-09-18 11:28:51 +03001483 except ValueError:
1484 # Non-encodable path
1485 return False
Antoine Pitrou31119e42013-11-22 17:38:12 +01001486
1487 def is_block_device(self):
1488 """
1489 Whether this path is a block device.
1490 """
1491 try:
1492 return S_ISBLK(self.stat().st_mode)
1493 except OSError as e:
Steve Dower2f6fae62019-02-03 23:08:18 -08001494 if not _ignore_error(e):
Antoine Pitrou31119e42013-11-22 17:38:12 +01001495 raise
1496 # Path doesn't exist or is a broken symlink
1497 # (see https://bitbucket.org/pitrou/pathlib/issue/12/)
1498 return False
Serhiy Storchaka0185f342018-09-18 11:28:51 +03001499 except ValueError:
1500 # Non-encodable path
1501 return False
Antoine Pitrou31119e42013-11-22 17:38:12 +01001502
1503 def is_char_device(self):
1504 """
1505 Whether this path is a character device.
1506 """
1507 try:
1508 return S_ISCHR(self.stat().st_mode)
1509 except OSError as e:
Steve Dower2f6fae62019-02-03 23:08:18 -08001510 if not _ignore_error(e):
Antoine Pitrou31119e42013-11-22 17:38:12 +01001511 raise
1512 # Path doesn't exist or is a broken symlink
1513 # (see https://bitbucket.org/pitrou/pathlib/issue/12/)
1514 return False
Serhiy Storchaka0185f342018-09-18 11:28:51 +03001515 except ValueError:
1516 # Non-encodable path
1517 return False
Antoine Pitrou31119e42013-11-22 17:38:12 +01001518
1519 def is_fifo(self):
1520 """
1521 Whether this path is a FIFO.
1522 """
1523 try:
1524 return S_ISFIFO(self.stat().st_mode)
1525 except OSError as e:
Steve Dower2f6fae62019-02-03 23:08:18 -08001526 if not _ignore_error(e):
Antoine Pitrou31119e42013-11-22 17:38:12 +01001527 raise
1528 # Path doesn't exist or is a broken symlink
1529 # (see https://bitbucket.org/pitrou/pathlib/issue/12/)
1530 return False
Serhiy Storchaka0185f342018-09-18 11:28:51 +03001531 except ValueError:
1532 # Non-encodable path
1533 return False
Antoine Pitrou31119e42013-11-22 17:38:12 +01001534
1535 def is_socket(self):
1536 """
1537 Whether this path is a socket.
1538 """
1539 try:
1540 return S_ISSOCK(self.stat().st_mode)
1541 except OSError as e:
Steve Dower2f6fae62019-02-03 23:08:18 -08001542 if not _ignore_error(e):
Antoine Pitrou31119e42013-11-22 17:38:12 +01001543 raise
1544 # Path doesn't exist or is a broken symlink
1545 # (see https://bitbucket.org/pitrou/pathlib/issue/12/)
1546 return False
Serhiy Storchaka0185f342018-09-18 11:28:51 +03001547 except ValueError:
1548 # Non-encodable path
1549 return False
Antoine Pitrou31119e42013-11-22 17:38:12 +01001550
Antoine Pitrou8477ed62014-12-30 20:54:45 +01001551 def expanduser(self):
1552 """ Return a new path with expanded ~ and ~user constructs
1553 (as returned by os.path.expanduser)
1554 """
1555 if (not (self._drv or self._root) and
1556 self._parts and self._parts[0][:1] == '~'):
1557 homedir = self._flavour.gethomedir(self._parts[0][1:])
1558 return self._from_parts([homedir] + self._parts[1:])
1559
1560 return self
1561
Antoine Pitrou31119e42013-11-22 17:38:12 +01001562
1563class PosixPath(Path, PurePosixPath):
chasondfa015c2018-02-19 08:36:32 +09001564 """Path subclass for non-Windows systems.
1565
1566 On a POSIX system, instantiating a Path should return this object.
1567 """
Antoine Pitrou31119e42013-11-22 17:38:12 +01001568 __slots__ = ()
1569
1570class WindowsPath(Path, PureWindowsPath):
chasondfa015c2018-02-19 08:36:32 +09001571 """Path subclass for Windows systems.
1572
1573 On a Windows system, instantiating a Path should return this object.
1574 """
Antoine Pitrou31119e42013-11-22 17:38:12 +01001575 __slots__ = ()
Berker Peksag04d42292016-03-11 23:07:27 +02001576
Cooper Lees173ff4a2017-08-01 15:35:45 -07001577 def is_mount(self):
1578 raise NotImplementedError("Path.is_mount() is unsupported on this system")