想知道是否有人可以帮助批评我编写的这段代码。
应该删除所有临时文件和文件夹,然后清空回收站。
我必须进行一些调整,因为使用了Pyinstaller,并且我希望控制台保持打开状态,并让用户在阅读后继续进行操作。
import os
file_size = os.path.getsize('C:\Windows\Temp')
print(str(file_size) + "kb of data will be removed")
import os, subprocess
del_dir = r'c:\windows\temp'
pObj = subprocess.Popen('rmdir /S /Q %s' % del_dir, shell=True, stdout =
subprocess.PIPE, stderr= subprocess.PIPE)
rTup = pObj.communicate()
rCod = pObj.returncode
if rCod == 0:
print('Success: Cleaned Windows Temp Folder')
else:
print('Fail: Unable to Clean Windows Temp Folder')
import winshell
winshell.recycle_bin().empty(confirm=False, show_progress=False,
sound=False)
from random import randint
from time import sleep
sleep(randint(4,6))
input("Press any key to continue")
答案 0 :(得分:0)
您应该查看标准库中的以下模块:
shutil
在文件系统(删除树等)上提供高级操作。
https://docs.python.org/3.6/library/shutil.html#module-shutil
tempfile
对临时文件提供了更好的处理。 https://docs.python.org/3.6/library/tempfile.html#module-tempfile
atexit
提供了出于任何原因在退出Python解释器之前执行的函数的注册表。 https://docs.python.org/3.6/library/atexit.html?highlight=atexit#module-atexit