首页 > 其他 > 详细

在指定路径中查找指定文件

时间:2014-04-04 11:57:55      阅读:474      评论:0      收藏:0      [点我收藏+]
bubuko.com,布布扣
import os 
import os.path
import shutil
def findFile(path,fileName,isHaveExtension=False):
    re=[]
    for root,dirs,files in os.walk(path):
        for name in files:
            t=name.split(.)[0]
            if isHaveExtension==False and t==fileName:
                re.append(os.path.join(root,name))
            if isHaveExtension==True and name==fileName:
                name==fileName
                re.append(os.path.join(root,name))
    return re
if __name__=="__main__":
    path=C:\\code\\python
    name=1.png
    tri=C:\\code\\python\\temp
    where=findFile(path,name,True)
    print(where)
    test_name=100000
    for temp in where:
        shutil.copy(temp,tri)
        t=os.path.basename(temp)   
        old_name=os.path.join(tri,t)
        new_name=tri+\\+str(test_name)+.+t.split(.)[1]
        test_name+=1     
        os.rename(old_name,new_name)
    
bubuko.com,布布扣

 

在指定路径中查找指定文件,布布扣,bubuko.com

在指定路径中查找指定文件

原文:http://www.cnblogs.com/sklww/p/3643954.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!