大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
这篇文章将为大家详细讲解有关Python中怎么断定某个文件夹内是否存在相关文件,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。
成都创新互联从2013年创立,先为金平等服务建站,金平等地企业,进行企业商务咨询服务。为金平企业网站制作PC+手机+微官网三网同步一站式服务解决您的所有建站问题。
#encoding=utf-8 import os
输入要查看的目录名,如“e:\ArcGis”
inputdir = raw_input("input:") print os.listdir(inputdir)
输入要删除的文件或者目录名
inputtodelete = raw_input("file to delete:")
如果是目录,Python代码的相关实际应用中则进行循环删除
if os.path.isdir(inputtodelete): for root, dirs, files in os.walk(inputdir + os.sep + inputtodelete,topdown=False): for file in files: os.remove(os.path.join(root,file)) for dir in dirs: os.rmdir(os.path.join(root,dir)) os.rmdir(inputdir + os.sep + inputtodelete) print "dir deleted!"
是文件,则直接删除
elif os.path.isfile(inputtodelete): os.remove(inputdir+os.sep+inputtodelete) print "file deleted!" else: print "error!not file or dir"
关于Python中怎么断定某个文件夹内是否存在相关文件就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。