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