python如何遍历文件|求教python怎么遍历指定文件

『壹』 python中如何遍历json数组

1、创建python文件,testjson.py;

『贰』 如何利用Python遍历文件夹

1. 基本实现

[[email protected] ~]# cat dirfile.py

import ospath='/tmp'for dirpath,dirnames,filenames in os.walk(path): for file in filenames:fullpath=os.path.join(dirpath,file) print fullpath

执行结果如下:

[[email protected] ~]# python dirfile.py /tmp/yum.log/tmp/pulse-3QSA3BbwpQ49/pid/tmp/pulse-3QSA3BbwpQ49/native/tmp/.esd-0/socket

2. 在上例的基础上传递参数

import os,syspath=sys.argv[1]for dirpath,dirnames,filenames in os.walk(path): for file in filenames:fullpath=os.path.join(dirpath,file) print fullpath

执行方式为:[[email protected] ~]# python dirfile.py /tmp

在这里,sys.argv[1]是接受参数,也可以定义sys.argv[2]接受第二个参数

3. 如何用函数实现

PS:

1> def __init__():函数,也叫初始化函数。

self.path = path可以理解为初始化定义了1个变量。 在后面的def里面调用的时候必须要使用self.path而不能使用path

2>__name__ == '__main__'

模块是对象,并且所有的模块都有一个内置属性 __name__。一个模块的 __name__ 的值取决于您如何应用模块。如果 import 一个模块,那么模块__name__ 的值通常为模块文件名,不带路径或者文件扩展名。但是您也可以像一个标准的程序样直接运行模块,在这种情况下, __name__ 的值将是一个特别缺省"__main__"。上述类中加上__name__ == '__main__'的判断语句,可以直接在终端环境下执行python dirfile.py /tmp进行测试,不必非得在交互式环境下导入模块进行测试。

『叁』 python如何实现for循环操作文件

python用for循环遍历文件操作,代码如下:

#!ursinenvpython#encoding:utf-8#设置编码方式importosimportreclassloop_file:def__init__(self,root_dir,short_exclude=[],long_exclude=[],file_extend=[]):self.root_dir=root_dirself.short_exclude=short_excludeself.long_exclude=long_excludeself.file_extend=file_extenddef__del__(self):passdefstart(self,func):self.func=funcreturnself.loop_file(self.root_dir)defloop_file(self,root_dir):t_sum=[]sub_gen=os.listdir(root_dir)forsubinsub_gen:is_exclude=Falseforextendsinself.short_exclude:##在不检查文件、目录范围中ifextendsinsub:##包含特定内容is_exclude=Truebreakifre.search(extends,sub):##匹配指定正则is_exclude=Truebreakifis_exclude:continueabs_path=os.path.join(root_dir,sub)is_exclude=Falseforexcludeinself.long_exclude:ifexclude==abs_path[-len(exclude):]:is_exclude=Truebreakifis_exclude:continueifos.path.isdir(abs_path):t_sum.extend(self.loop_file(abs_path))elifos.path.isfile(abs_path):ifnot"."+abs_path.rsplit(".",1)[1]inself.file_extend:##不在后缀名检查范围中continuet_sum.append(self.func(abs_path))returnt_sumif'__main__'==__name__:root_dir=r'D:harness
ewshoppingcart estcasepromosingle_promo'short_exclude=['.svn','.*_new.rb']###不包含检查的短目录、文件long_exclude=[]###不包含检查的长目录、文件file_extend=['.rb']###包含检查的文件类型lf=loop_file(root_dir,short_exclude,long_exclude,file_extend)forfinlf.start(lambdaf:f):printf

『肆』 如何用Python实现目录遍历

1. 基本实现 [[email protected] ~]# cat dirfile.pyimport ospath='/tmp'for dirpath,dirnames,filenames in os.walk(path): for file in filenames: fullpath=os.path.join(dirpath,file) print fullpath 执行结果如下:[[email protected] ~]# python dirfile.py /tmp/yum.log/tmp/pulse-3QSA3BbwpQ49/pid/tmp/pulse-3QSA3BbwpQ49/native/tmp/.esd-0/socket2. 在上例的基础上传递参数import os,syspath=sys.argv[1]for dirpath,dirnames,filenames in os.walk(path): for file in filenames: fullpath=os.path.join(dirpath,file)

『伍』 python如何遍历文件夹然后生成md5

importos,hashlibdefgetlistdir(path):try:#如果path是一个文件的完整名称,os.listdir会抛出错误fl=os.listdir(path)exceptExceptionase:fl=[]finally:returnfldefgetallfile(path):allfile=[]fl=getlistdir(path)iflen(fl)!=0:fl=list(map(lambdax:path+'\'+x,fl))allfile=allfile+flforfinfl:allfile=allfile+getallfile(f)returnallfiledefmakemd5(stri):md5=hashlib.md5()md5.update(stri.encode('utf-8'))returnmd5.hexdigest()defmain():myfilelist=getallfile('.')#获取当前文件'.'中的所有文件和文件夹名listmyfilestr='|'.join(myfilelist)#文件list转换为以'|'分隔的字符串print(myfilestr)#显示要进行md5摘要加密的字符print("md5=",makemd5(myfilestr))#计算并显示md5码main()

『陆』 Python中如何遍历指定目录下的所有文件

例如:在C:\TDDOWNLOAD目录下有a.txt、b.txt两个文件,另有\sub1子文件夹,C:\TDDOWNLOAD\sub1下又有c.txt、d.txt两个文件。1.os.walkos.walk()返回一个三元素的tuple:当前路径、子文件夹名称、文件列表。>>>importos>>>deffun(path):…forroot,dirs,filesinos.walk(path):…forfninfiles:…printroot,fn…>>>fun(r'C:\TDDOWNLOAD')C:\TDDOWNLOADa.txtC:\TDDOWNLOADb.txtC:\TDDOWNLOAD\sub1c.txtC:\TDDOWNLOAD\sub1d.txt>>>2.glob.globglob.glob()只接受一个参数,这个参数既代有路径,又代有匹配模式,返回值为一个列表。注意,glob.glob()无法直接穿透子文件夹,需要自己处理:>>>deffun(path):…forfninglob.glob(path+os.sep+'*'):#'*'代表匹配所有文件…ifos.path.isdir(fn):#如果结果为文件夹…fun(fn)#递归…else:…printfn…>>>fun(r'C:\TDDOWNLOAD')C:\TDDOWNLOAD\a.txtC:\TDDOWNLOAD\b.txtC:\TDDOWNLOAD\sub1\c.txtC:\TDDOWNLOAD\sub1\d.txt>>>'*'为匹配模式,代表匹配所有文件,只有这样才能将子文件夹查出来,以便递归深入,探查下一层的文件。

『柒』 求教python怎么遍历指定文件

监控目录 — 分两个部分: 1. 扫描目录文件, 保持当前状态数据; 2. 状态数据的比较

importosimportfnmatchdefgetfileinfo(filename):(mode,ino,dev,nlink,uid,gid,size,atime,mtime,ctime)=os.stat(filename)returndict(modifytime=mtime,createtime=ctime,size=size,)classDirectoryMonitor(object):def__init__(self,path,fnexp="*.*"):self.path=pathself.fnexp=fnexpself.files={}self.scan()defscan(self):currentfiles={}forpath,dirs,filesinos.walk(self.path):forfinfnmatch.filter(files,self.fnexp):fullname=os.path.join(path,f)currentfiles[fullname]=getfileinfo(fullname)lastfiles=self.filesself.files=currentfilesreturnself.check(lastfiles,currentfiles)@staticmethoddefcheck(lastfiles,currfiles):monitor={}newer={}forfinset(currfiles)-set(lastfiles):newer[f]=currfiles[f]ifnewer:monitor["newer"]=newerdeleted={}forfinset(lastfiles)-set(currfiles):deleted[f]=lastfiles[f]ifdeleted:monitor["deleted"]=deletedchanged={}forfinset(lastfiles)&set(currfiles):iflastfiles[f]!=currfiles[f]:changed[f]=currfiles[f]ifchanged:monitor["changed"]=changedreturnmonitordeftester():importtimedm=DirectoryMonitor(r"/home/tim/data","*.txt")time.sleep(20)m=dm.scan()ifm:printmif__name__=="__main__":tester()

『捌』 python或者bat怎么遍历文件夹下所有文件和文件夹然后修改后缀

先遍历所有文件:

fromosimportwalkf=[]for(dirpath,dirnames,filenames)inwalk(mypath):f.extend(filenames)break

『玖』 如何用Python os.path.walk方法遍历搜索文件内容的操作详解

本文是关于如何用Python os.path.walk方法遍历搜索文件目录内容的操作详解的文章,python 代码中用os.path.walk函数这个python模块的方法来遍历文件,python列出文件夹下的所有文件并找到自己想要的内容。文中使用到了Python os模块和Python sys模块,这两个模块具体的使用方法请参考玩蛇网相关文章阅读。Python os.path.walk方法遍历文件搜索内容方法代码如下:?041import os, sys#代码中需要用到的方法模块导入 listonly = False skipexts = ['.gif', '.exe', '.pyc', '.o', '.a','.dll','.lib','.pdb','.mdb'] # ignore binary files def visitfile(fname, searchKey): global fcount, vcount try: if not listonly: if os.path.splitext(fname)[1] in skipexts: pass elif open(fname).read().find(searchKey) != -1: print'%s has %s' % (fname, searchKey) fcount += 1 except: pass vcount += 1 #www.iplaypy.com def visitor(args, directoryName,filesInDirectory): for fname in filesInDirectory: fpath = os.path.join(directoryName, fname) if not os.path.isdir(fpath): visitfile(fpath,args) def searcher(startdir, searchkey): global fcount, vcount fcount = vcount = 0 os.path.walk(startdir, visitor, searchkey) if __name__ == '__main__': root=raw_input("type root directory:") key=raw_input("type key:") searcher(root,key) print 'Found in %d files, visited %d' % (fcount, vcount)

『拾』 如何用python遍历文件夹下的所有excel文件

大数据处理经常要用到一堆表格,然后需要把数据导入一个list中进行各种算法分析,简单讲一下自己的做法:

1.如何读取excel文件

网上的版本很多,在xlrd模块基础上,找到一些源码:

[python]view plain

importxdrlib,sys

importxlrd

defopen_excel(file="C:/Users/flyminer/Desktop/新建MicrosoftExcel工作表.xlsx"):

data=xlrd.open_workbook(file)

returndata

#根据索引获取Excel表格中的数据参数:file:Excel文件路径colnameindex:表头列名所在行的所以,by_index:表的索引

defexcel_table_byindex(file="C:/Users/flyminer/Desktop/新建MicrosoftExcel工作表.xlsx",colnameindex=0,by_index=0):

data=open_excel(file)

table=data.sheets()[by_index]

nrows=table.nrows#行数

ncols=table.ncols#列数

colnames=table.row_values(colnameindex)#某一行数据

list=[]

forrownuminrange(1,nrows):

row=table.row_values(rownum)

ifrow:

app={}

foriinrange(len(colnames)):

app[colnames[i]]=row[i]

list.append(app)

returnlist

#根据名称获取Excel表格中的数据参数:file:Excel文件路径colnameindex:表头列名所在行的所以,by_name:Sheet1名称

defexcel_table_byname(file="C:/Users/flyminer/Desktop/新建MicrosoftExcel工作表.xlsx",colnameindex=0,by_name=u'Sheet1'):

data=open_excel(file)

table=data.sheet_by_name(by_name)

nrows=table.nrows#行数

colnames=table.row_values(colnameindex)#某一行数据

list=[]

forrownuminrange(1,nrows):

row=table.row_values(rownum)

ifrow:

app={}

foriinrange(len(colnames)):

app[colnames[i]]=row[i]

list.append(app)

returnlist

defmain():

tables=excel_table_byindex()

forrowintables:

print(row)

tables=excel_table_byname()

forrowintables:

print(row)

if__name__=="__main__":

main()

最后一句是重点,所以这里也给代码人点个赞!

最后一句让代码里的函数都可以被复用,简单地说:假设文件名是a,在程序中import a以后,就可以用a.excel_table_byname()和a.excel_table_byindex()这两个超级好用的函数了。

2.然后是遍历文件夹取得excel文件以及路径:,原创代码如下:

[python]view plain

importos

importxlrd

importtest_wy

xpath="E:/唐伟捷/电力/电力系统总文件夹/舟山电力"

xtype="xlsx"

typedata=[]

name=[]

raw_data=[]

file_path=[]

defcollect_xls(list_collect,type1):

#取得列表中所有的type文件

foreach_elementinlist_collect:

ifisinstance(each_element,list):

collect_xls(each_element,type1)

elifeach_element.endswith(type1):

typedata.insert(0,each_element)

returntypedata

#读取所有文件夹中的xls文件

defread_xls(path,type2):

#遍历路径文件夹

forfileinos.walk(path):

foreach_listinfile[2]:

file_path=file[0]+"/"+each_list

#os.walk()函数返回三个参数:路径,子文件夹,路径下的文件,利用字符串拼接file[0]和file[2]得到文件的路径

name.insert(0,file_path)

all_xls=collect_xls(name,type2)

#遍历所有type文件路径并读取数据

forevey_nameinall_xls:

xls_data=xlrd.open_workbook(evey_name)

foreach_sheetinxls_data.sheets():

sheet_data=test_wy.excel_table_byname(evey_name,0,each_sheet.name)

#请参考读取excel文件的代码

raw_data.insert(0,sheet_data)

print(each_sheet.name,":Datahasbeendone.")

returnraw_data

a=read_xls(xpath,xtype)

print("Victory")

欢迎各种不一样的想法~~


赞 (0)