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

python 实现本地查找文件,并打印(os for os.open chdir)

时间:2017-03-06 13:42:11      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:标志位   更改   lis   utf-8   int   follow   查找文件   put   listdir   

#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)

标签:标志位   更改   lis   utf-8   int   follow   查找文件   put   listdir   

原文地址:http://www.cnblogs.com/lf-watermelon/p/6509064.html

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