diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-03-24 18:51:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-24 18:51:53 (GMT) |
commit | af7b9ec5c855366feef4c67dc492d64b3baf84ca (patch) | |
tree | 48f0d7ad1aad75910e0a9f87876b5d9144fb55b5 /Lib | |
parent | 8988945cdc27ffa86ba8c624e095b51c459f5154 (diff) | |
download | cpython-af7b9ec5c855366feef4c67dc492d64b3baf84ca.zip cpython-af7b9ec5c855366feef4c67dc492d64b3baf84ca.tar.gz cpython-af7b9ec5c855366feef4c67dc492d64b3baf84ca.tar.bz2 |
bpo-25803: Avoid incorrect errors raised by Path.mkdir(exist_ok=True) (#805)
when the OS gives priority to errors such as EACCES over EEXIST.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/pathlib.py | 32 | ||||
-rw-r--r-- | Lib/test/test_pathlib.py | 5 |
2 files changed, 20 insertions, 17 deletions
diff --git a/Lib/pathlib.py b/Lib/pathlib.py index 9f34721..8c1cb96 100644 --- a/Lib/pathlib.py +++ b/Lib/pathlib.py @@ -1220,25 +1220,23 @@ class Path(PurePath): os.close(fd) def mkdir(self, mode=0o777, parents=False, exist_ok=False): + """ + Create a new directory at this given path. + """ if self._closed: self._raise_closed() - if not parents: - try: - self._accessor.mkdir(self, mode) - except FileExistsError: - if not exist_ok or not self.is_dir(): - raise - else: - try: - self._accessor.mkdir(self, mode) - except FileExistsError: - if not exist_ok or not self.is_dir(): - raise - except OSError as e: - if e.errno != ENOENT or self.parent == self: - raise - self.parent.mkdir(parents=True) - self._accessor.mkdir(self, mode) + try: + self._accessor.mkdir(self, mode) + except FileNotFoundError: + if not parents or self.parent == self: + raise + self.parent.mkdir(parents=True) + self._accessor.mkdir(self, mode) + except OSError: + # Cannot rely on checking for EEXIST, since the operating system + # could give priority to other errors like EACCES or EROFS + if not exist_ok or not self.is_dir(): + raise def chmod(self, mode): """ diff --git a/Lib/test/test_pathlib.py b/Lib/test/test_pathlib.py index 88a93e5..3ff9726 100644 --- a/Lib/test/test_pathlib.py +++ b/Lib/test/test_pathlib.py @@ -1776,6 +1776,11 @@ class _BasePathTest(object): self.assertTrue(p.exists()) self.assertEqual(p.stat().st_ctime, st_ctime_first) + def test_mkdir_exist_ok_root(self): + # Issue #25803: A drive root could raise PermissionError on Windows + self.cls('/').resolve().mkdir(exist_ok=True) + self.cls('/').resolve().mkdir(parents=True, exist_ok=True) + @only_nt # XXX: not sure how to test this on POSIX def test_mkdir_with_unknown_drive(self): for d in 'ZYXWVUTSRQPONMLKJIHGFEDCBA': |