作者:陳熹
早起:Python
01
大家好,又到了Python辦公自動化系列。
今天分享一個系統(tǒng)層面的自動化案例:
「給定一個文件夾,使用Python檢查給定文件夾下有無文件重復(fù),若存在重復(fù)則刪除」
主要涉及的知識點有:
os模塊綜合應(yīng)用
glob模塊綜合應(yīng)用
利用filecmp模塊比較兩個文件
02
該程序?qū)崿F(xiàn)的邏輯可以具化為:
遍歷獲取給定文件夾下的所有文件,然后通過嵌套循環(huán)兩兩比較文件是否相同,如果相同則刪除后者。
實現(xiàn)問題的關(guān)鍵就變成了??
如何判斷兩個文件是否相同?
在這里我們可以使用filecmp模塊,來看看官方的介紹文檔:
filecmp.cmp(f1, f2, shallow=True) 比較名為f1和f2的文件,如果它們似乎相等則返回True,否則返回False 如果shallow為真,那么具有相同os.stat()簽名的文件將會被認(rèn)為是相等的。否則,將比較文件的內(nèi)容。
# 假設(shè)x和y兩個文件是相同的
print(filecmp.cmp(x, y))
# True
03
import os
import glob
import filecmp
dir_path = r'C:\\xxxx'
for file in glob.glob(path + '/**/*', recursive=True):
pass
首先創(chuàng)建一個空列表,后面用list.append(i)添加文件路徑 接著利用os.path.isfile(i)判斷是否是文件,返回True則執(zhí)行添加元素的操作
file_lst = []
for i in glob.glob(dir_path + '/**/*', recursive=True):
if os.path.isfile(i):
file_lst.append(i)
for x in file_lst:
for y in file_lst:
if x != y:
if filecmp.cmp(x, y):
os.remove(y)
for x in file_lst:
for y in file_lst:
if x != y and os.path.exists(x) and os.path.exists(y):
if filecmp.cmp(x, y):
os.remove(y)
import os
import glob
import filecmp
dir_path = r'C:\xxxx'
file_lst = []
for i in glob.glob(dir_path + '/**/*', recursive=True):
if os.path.isfile(i):
file_lst.append(i)
for x in file_lst:
for y in file_lst:
if x != y and os.path.exists(x) and os.path.exists(y):
if filecmp.cmp(x, y):
os.remove(y)
聯(lián)系客服