這篇文章主要介紹怎樣使用python批量查找文件并復(fù)制,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!
讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來自于我們對這個行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價值的長期合作伙伴,公司提供的服務(wù)項目有:主機域名、虛擬空間、營銷軟件、網(wǎng)站建設(shè)、大化網(wǎng)站維護、網(wǎng)站推廣。
直接上代碼演示:
1、輸入一個文件夾路徑:
搜索此路徑下以及子路徑下所有以py文件結(jié)尾的文件。并存放到列表中。另外,加上一定的異常的處理,提高代碼的健壯性。
要求使用兩種方法實現(xiàn):
1、 使用遞歸
2、 使用python模塊里的方法
import os import os.path#存儲py文件 list_total = []#存儲其他類型文件 list_qita = []#文件夾路徑 def folder_path(path):#找到當(dāng)前文件夾下面的文件和文件夾 list = os.listdir(path#遍歷每個文件和文件夾 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("請輸入文件夾的路徑:").strip() folder_path(m) print() print("py文件有:",end="") print(list_total) print() print("其他文件有:",end="") print(list_qita) print()#入口 main() Python之文件的搜索以及復(fù)制 2、完成文件的復(fù)制粘貼 要求,模擬windows里的實現(xiàn)。 import os import os.path#完成文件路徑分割 def file_path():#C:\Users\Administrator\Desktop\a\a.txt path_old = input("請輸入文件的路徑:").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()
最后運行效果:
以上是怎樣使用python批量查找文件并復(fù)制的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!