修改文件可能不存在的bug

修改文件可能不存在的bug
This commit is contained in:
刘悦 2024-01-28 20:17:35 +08:00 committed by GitHub
parent b8ae5a2761
commit 96128d604a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -16,7 +16,11 @@ if(os.path.exists(tmp)):
if(name=="jieba.cache"):continue
path="%s/%s"%(tmp,name)
delete=os.remove if os.path.isfile(path) else shutil.rmtree
try:
delete(path)
except Exception as e:
print(str(e))
pass
import site
site_packages_roots = []
for path in site.getsitepackages():