我具有以下用于创建新目录的功能。 def mkdir_p(path): try: pathlib.Path(path).mkdir(parents=True, exist_ok=True) except FileExistsError as exc: raise
確定! 回上一頁