溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

怎樣使用python批量查找文件并復(fù)制

發(fā)布時(shí)間:2020-11-13 09:43:55 來源:億速云 閱讀:737 作者:小新 欄目:編程語言

這篇文章主要介紹怎樣使用python批量查找文件并復(fù)制,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

直接上代碼演示:

1、輸入一個(gè)文件夾路徑:

搜索此路徑下以及子路徑下所有以py文件結(jié)尾的文件。并存放到列表中。另外,加上一定的異常的處理,提高代碼的健壯性

要求使用兩種方法實(shí)現(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#遍歷每個(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("請輸入文件夾的路徑:").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("請輸入文件的路徑:").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ù)制

以上是怎樣使用python批量查找文件并復(fù)制的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI