import os
try: # 监控可能出错的地方 os.rmdir(‘Kite‘) # FileExistError 属于 OSError except OSError as e: # 错误处理 print("错误是:{0}".format(e)) file = open(r"D:\Test3\base_python\Kite\error.txt",‘a+‘,encoding=‘utf-8‘) file.write(str(e)) file.close()#关闭文件
原文:https://www.cnblogs.com/kite123/p/11673102.html