码迷,mamicode.com
首页 > 编程语言 > 详细

python实现查找文件

时间:2019-04-25 01:32:53      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:names   put   返回   exists   filename   查找   输出   输入   pytho   

import os.path
while True:
rootdir=input(‘请输入遍历文件夹的绝对路径:(q退出)‘)
if rootdir==‘q‘:
break
if not(os.path.exists(rootdir)):
print("输入的路径不存在,请重新输入!!")
continue
for parent,dirnames,filenames in os.walk(rootdir):
#三个参数:分别返回1.父目录 2.所有文件夹名字(不含路径) 3.所有文件名字
for dirname in dirnames:
#输出文件夹信息
print( "parent is:" + parent)
print("dirname is" + dirname)
for filename in filenames:
#输出文件信息
print( "parent is:" + parent)
print( "filename is:" + filename)
print("the full name of the file is:" + os.path.join(parent,filename))

python实现查找文件

标签:names   put   返回   exists   filename   查找   输出   输入   pytho   

原文地址:https://www.cnblogs.com/CoolClare/p/10765692.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!