check dir exists :param path: :type path:str :return: :rtype: bool
(path)
| 126 | |
| 127 | |
| 128 | def check_dir(path): |
| 129 | """ |
| 130 | check dir exists |
| 131 | :param path: |
| 132 | :type path:str |
| 133 | :return: |
| 134 | :rtype: bool |
| 135 | """ |
| 136 | return os.path.exists(path) |
| 137 | |
| 138 | |
| 139 | def mkdir(path): |
no outgoing calls
no test coverage detected