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
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)
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.
用一个实例说明Python实现删除当前目录下除当前脚本以外的文件和文件夹: