1 获取文件后缀名:
复制代码代码如下:
#!/usr/bin/python
import os
dict = {}
for d, fd, fl in oswalk('/home/ahda/Program/'):
for f in fl:
sufix = ospathsplitext(f)[1][1:]
if dicthas_key(sufix):
dict[sufix] += 1
else:
dict[sufix] = 1
for item in dictitems():
print "%s : %s" % item
这里的关键是ospathsplitext()
如abc/efgh ,这里获取到的是h
2 python查找遍历指定文件路径下指定后缀名的文件实例:
复制代码代码如下:
import os
import sys
import ospath
for dirpath, dirnames, filenames in oswalk(startdir):
for filename in filenames:
if ospathsplitext(filename)[1] == 'txt':
filepath = ospathjoin(dirpath, filename)
#print("file:" + filepath)
input_file = open(filepath)
text = input_fileread()
input_fileclose()
output_file = open( filepath, 'w')
output_filewrite(text)
output_fileclose()
3 批量重命名目录中的文件后缀实例:
复制代码代码如下:
import os
def swap_extensions(dir, before, after):
if before[:1] != '': #如果参数中的后缀名没有''则加上
before = '' + before
thelen = -len(before)
if after[:1] != '':
after = '' + after
for path, subdir, files in oswalk(dir):
for oldfile in files:
if oldfile[thelen:] == before:
oldfile = ospathjoin(path, oldfile)
newfile = oldfile[:thelen] + after
osrename(oldfile, newfile)
print oldfile +' changed to ' + newfile
if __name__ == '__main__':
import sys
if len(sysargv) != 4:
print 'Usage:swap_extensionpy rootdir before after'
sysexit(1)
swap_extensions(sysargv[1], sysargv[2], sysargv[3])
例子:将e:/py/test目录下php结尾的文件重命名为py
E:py>python_cook e:/py/test php py
e:/py/testtestphp changed to e:/py/testtestpy
e:/py/test1php changed to e:/py/test1py
e:/py/test2php changed to e:/py/test2py
以上就是关于痔疮微创手术cookq是一次性的么,为什么一个cookq就要收握2000元,说是一次性的手术工具全部的内容,包括:痔疮微创手术cookq是一次性的么,为什么一个cookq就要收握2000元,说是一次性的手术工具、关于ASP批量生成HTM的问题,有高手在么、python如何获取上传图片后缀名等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)