Whether `path` is a directory, to which the user has write access.
(path: str)
| 22 | fs_encoding = sys.getfilesystemencoding() |
| 23 | |
| 24 | def _writable_dir(path: str) -> bool: |
| 25 | """Whether `path` is a directory, to which the user has write access.""" |
| 26 | return os.path.isdir(path) and os.access(path, os.W_OK) |
| 27 | |
| 28 | if sys.platform == 'win32': |
| 29 | def _get_long_path_name(path): |
no outgoing calls
no test coverage detected
searching dependent graphs…