這篇文章主要介紹怎樣使用python批量查找文件并復(fù)制,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)建站!專(zhuān)注于網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開(kāi)發(fā)、重慶小程序開(kāi)發(fā)、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了西林免費(fèi)建站歡迎大家使用!直接上代碼演示:
1、輸入一個(gè)文件夾路徑:
搜索此路徑下以及子路徑下所有以py文件結(jié)尾的文件。并存放到列表中。另外,加上一定的異常的處理,提高代碼的健壯性。
要求使用兩種方法實(shí)現(xiàn):
1、 使用遞歸
2、 使用python模塊里的方法
import os import os.path#存儲(chǔ)py文件 list_total = []#存儲(chǔ)其他類(lèi)型文件 list_qita = []#文件夾路徑 def folder_path(path):#找到當(dāng)前文件夾下面的文件和文件夾 list = os.listdir(path#遍歷每個(gè)文件和文件夾 for n in list: old_path = os.path.join(path,n) index = n.rfind(".") if os.path.isfile(old_path) and n[index+1:]=="py": list_total.append(n) elif os.path.isdir(old_path): mm = old_path#遞歸調(diào)用 folder_path(mm) else: list_qita.append(n)#主函數(shù) def main(): m = input("請(qǐng)輸入文件夾的路徑:").strip() folder_path(m) print() print("py文件有:",end="") print(list_total) print() print("其他文件有:",end="") print(list_qita) print()#入口 main() Python之文件的搜索以及復(fù)制 2、完成文件的復(fù)制粘貼 要求,模擬windows里的實(shí)現(xiàn)。 import os import os.path#完成文件路徑分割 def file_path():#C:\Users\Administrator\Desktop\a\a.txt path_old = input("請(qǐng)輸入文件的路徑:").strip()#文件名+后綴 path_index = path_old.rindex('\\') path_dir = path_old[:path_index]#path_name = path_old[path_index+1:] lists = os.listdir(path_dir) print(lists)#文件后綴 index = path_old.rindex(".") dir = path_old[:index] name = path_old[index:]#文件名a filename = path_old[path_index+1:index] if len(lists)==1: path_new = dir + " - 副本" + name else: num = len(lists) while num < 20: if (filename +" - 副本" + name) not in lists: path_new = dir + " - 副本" + name elif (filename +" - 副本 " + "(" + str(num) + ")" + name) in lists: n = 2 while n < len(lists): if (filename +" - 副本 " + "(" + str(n) + ")" + name) in lists: n += 1 else: path_new = dir + " - 副本 " + "(" + str(n) + ")" + name break else: path_new = dir + " - 副本 " + "(" + str(num) + ")" + name num += 1 break copy_and_paste_the_files(path_old,path_new)#文件復(fù)制 def copy_and_paste_the_files(old_path,new_path): old_file = open(old_path,"rb") new_file = open(new_path,"wb") while True: content = old_file.read(1024*1024) if content: new_file.write(content) else: print("文件復(fù)制完成!!!") break old_file.close() new_file.close()#主程序 def main(): file_path()#程序入口 main()
最后運(yùn)行效果:
以上是怎樣使用python批量查找文件并復(fù)制的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!