:param path: :type path: str :return: None
(path)
| 137 | |
| 138 | |
| 139 | def mkdir(path): |
| 140 | """ |
| 141 | :param path: |
| 142 | :type path: str |
| 143 | :return: None |
| 144 | """ |
| 145 | path = path.strip() |
| 146 | if not check_dir(path): |
| 147 | os.makedirs(path) |
| 148 | |
| 149 | |
| 150 | def remove_old_file(path): |
no test coverage detected