本文实例讲述了Python实现删除当前目录下除当前脚本以外的文件和文件夹。分享给大家供大家参考。具体如下:
1
2
3
4
5
6
7
8
9
|
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程序设计有所帮助。