首页 > 代码库 > python 实现本地查找文件,并打印(os for os.open chdir)
python 实现本地查找文件,并打印(os for os.open chdir)
#coding:UTF-8
import os
b=str(raw_input(‘请输入要查找的文件:‘))
a=str(raw_input(‘请输入要查找的目录:‘))
y=1
i=[y for y in os.listdir(a)]#列出文件和目录
#print i
#print a
c=0#设置标志位,0代表没有找到,1代表找到。如果没有标志位,则会打印多个soory
for x in i:
#print x
if x==b:
c=1
print ‘yes,it is here.the content as follow:‘
os.chdir(a)#更改当前目录
d=open(b)#打开文件
e=d.read()#读取文件
print e
if c==0:
print ‘sorry,not find‘
python 实现本地查找文件,并打印(os for os.open chdir)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。