Python實(shí)現(xiàn)的根據(jù)文件名查找數(shù)據(jù)文件功能示例
本文實(shí)例講述了Python實(shí)現(xiàn)的根據(jù)文件名查找數(shù)據(jù)文件功能。分享給大家供大家參考,具體如下:
#-*- coding: UTF-8 -*-
import os
import shutil
AllFiles=[]
NameFiles=[]
def findFie(filePath):
pathDir = os.listdir(filePath)
for allDir in pathDir:
# print(allDir)
AllFiles.append(allDir)
#pass
#filepath = 'C:\\Users\\IBM_ADMIN\\Desktop\\cognos\\datastage\\71&72\\71\\71sns'
#copyfile = 'C:\\Users\\IBM_ADMIN\\Desktop\\cognos\\datastage\\71&72\\71mtp'
filepath = 'C:\\Users\\IBM_ADMIN\\Desktop\\cognos\\datastage\\71&72\\72\\72sns'
copyfile = 'C:\\Users\\IBM_ADMIN\\Desktop\\cognos\\datastage\\71&72\\72mtp'
shutil.rmtree(copyfile)
os.mkdir(copyfile)
findFie(filepath)
def readFile():
readFile = open('./jobname')
i = 0
for eachLine in readFile:
i= i + 1
#print(eachLine)
NameFiles.append(eachLine.replace('\n','')) # 去掉換行符
readFile()
#字符串比較
def doTheCompare():
for x in NameFiles:
print(x)
for y in AllFiles:
if x == y :
copyFrom = os.path.join(filepath,x)
copyTo = os.path.join(copyfile,x)
shutil.copyfile(copyFrom,copyTo)
else:
pass
#print ("file not find under sns process,thanks .please check with wumi.")
doTheCompare()
附:這里再補(bǔ)充一個(gè)更為簡單的文件搜索功能示例:
# -*- coding:utf-8 -*-
import os
def search(path=".", name="1"):
for item in os.listdir(path):
item_path = os.path.join(path, item)
if os.path.isdir(item_path):
search(item_path, name)
elif os.path.isfile(item_path):
if name in item:
print(item_path)
if __name__ == "__main__":
search(path=r"D:\360Downloads",name="dll")
更多Python相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Python文件與目錄操作技巧匯總》、《Python編碼操作技巧總結(jié)》、《Python數(shù)據(jù)結(jié)構(gòu)與算法教程》、《Python函數(shù)使用技巧總結(jié)》、《Python字符串操作技巧匯總》及《Python入門與進(jìn)階經(jīng)典教程》
希望本文所述對大家Python程序設(shè)計(jì)有所幫助。
相關(guān)文章
Python 隱藏輸入密碼時(shí)屏幕回顯的實(shí)例
今天小編就為大家分享一篇Python 隱藏輸入密碼時(shí)屏幕回顯的實(shí)例,具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧2019-02-02
Python 抓取動(dòng)態(tài)網(wǎng)頁內(nèi)容方案詳解
這篇文章主要介紹了Python 抓取動(dòng)態(tài)網(wǎng)頁內(nèi)容方案詳解,首先通過Chrome的工具來進(jìn)行分析,然后再使用python進(jìn)行處理,最終得到我們需要的內(nèi)容,非常的方便,這里也算是給大家提供一個(gè)思路2014-12-12
python urllib和urllib3知識(shí)點(diǎn)總結(jié)
在本篇內(nèi)容里小編給大家分享了一篇關(guān)于python urllib和urllib3知識(shí)點(diǎn)總結(jié)內(nèi)容,對此有興趣的朋友們可以學(xué)習(xí)參考下。2021-02-02
python pygame實(shí)現(xiàn)球球大作戰(zhàn)
這篇文章主要為大家詳細(xì)介紹了Python pygame實(shí)現(xiàn)球球大作戰(zhàn),文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2019-11-11
python tkinter制作用戶登錄界面的簡單實(shí)現(xiàn)
這篇文章主要介紹了python tkinter制作用戶登錄界面的簡單實(shí)現(xiàn),文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2021-04-04
python常用模塊(math itertools functools sys
這篇文章主要介紹了python常用模塊之math itertools functools sys shutil的使用示例講解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2023-06-06

