Python 官方文档:入门教程 => 点击学习
这篇文章将为大家详细讲解有关python中怎么断定某个文件夹内是否存在相关文件,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。#encoding=utf-8 import
这篇文章将为大家详细讲解有关python中怎么断定某个文件夹内是否存在相关文件,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。
#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中怎么断定某个文件夹内是否存在相关文件就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。
--结束END--
本文标题: Python中怎么断定某个文件夹内是否存在相关文件
本文链接: https://lsjlt.com/news/290224.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0