def remove_all_file(filepath, file_name):
"""
删除 MAC 临时文件
:param file_name:
:return:
"""
for root, dirs, files in os.walk(filepath):
for name in files:
print(name)
if name.startswith("._") or name == file_name:
os.remove(os.path.join(root, name))
接着,我们利用pyinstaller将Python文件打包成Exe可执行文件。8 ^ ?$ u0 w& [* E
# 安装 pyinstaller " k s% N! Z1 G% `/ q) |pip3 install pyinstaller ) d% f1 I( ^# I, \# J% j
# 把 py 文件打包成 exe 可执行文件 1 \4 ?5 V" p8 \ N, d& |# 图标:img.ico8 m7 O$ T8 g3 f1 j
pyinstaller -F -i img.ico del_mac_files.py