Posted in Python onJuly 27, 2015
本文实例讲述了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)
希望本文所述对大家的Python程序设计有所帮助。
Python实现删除当前目录下除当前脚本以外的文件和文件夹实例
- Author -
open-source声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@