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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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)的主要内容,如果未能解决你的问题,请参考以下文章

Python:打印目录下最大的十个文件

Python OS导入一个文件夹所有文件

python OS库

怎么查找 Python 模块的用法说明及模块文件位置?

bat先查找文件夹再查找文件夹内的文件并打开

在当前目录以及当前目录的所有子目录下查找文件名包含指定字符串的文件,并打印出相对路径