发布于 2020年12月2日2021年12月2日 Python(判断文件目录是否存在) ###########创建文件目录,判断文件是否存在 try: os.mkdir('./test') except Exception as e: print(e) 相关