数据分析师2017-10-01 00:47:08
How to use Python to delete files and folders in the current directory except the current script? -PHP Chinese website Q&A-How to use Python to delete files and folders in the current directory except the current script? -PHP Chinese website Q&A
Let’s take a look and learn.
伊谢尔伦2017-03-13 09:16:01
用一个实例说明Python实现删除当前目录下除当前脚本以外的文件和文件夹:
import os,sys import shutil cur_file = os.path.basename(sys.argv[0]) dir_content = [x for x in os.listdir(".") if x != cur_file] for f in dir_content: if os.path.isdir(f): shutil.rmtree(f) else: os.remove(f)