[Python練習]對比兩個目錄裡面的檔案差異,並給出差異列表

來源:互聯網
上載者:User

標籤:python   練習   

#!/usr/bin/env pythonimport osimport sysdef get_Curlist(path):        cur_Files = os.listdir(path)        all_Files = []        for file_Name in cur_Files:                full_Name = os.path.join(path,file_Name)                all_Files.append(full_Name)                if os.path.isdir(full_Name):                        next_Levelfiles = get_Curlist(full_Name)                        all_Files.extend(next_Levelfiles)        return all_Filesitem_Path = ‘/usr/local/webapp/document‘file_Path = get_Curlist(item_Path)item_Newpath = ‘/usr/local/webapp/document_newdocument‘newfile_Path = get_Curlist(item_Newpath)def add_File():        add_List=[]        for num in range(0,len(newfile_Path)):                renewfile_Path=newfile_Path[num].replace(‘_newdocument‘,‘‘)                if renewfile_Path not in file_Path:                        add_List.append(renewfile_Path)        return add_Listadd_Filelist = add_File()file_Add = open(‘/tmp/python_Addfile‘,‘w‘)file_Add.truncate()for num in range(0,len(add_Filelist)):        file_Add = open(‘/tmp/python_Addfile‘,‘a‘)        file_Add.write(add_Filelist[num]+‘\n‘)file_Add.close()def del_File():        del_File=[]        for num in range(0,len(file_Path)):                refile_Path=file_Path[num].replace(item_Path,item_Path+‘_newdocument‘)                if refile_Path not in newfile_Path:                        del_File.append(refile_Path)        return del_Filedel_Filelist = del_File()file_Add = open(‘/tmp/python_Delfile‘,‘w‘)file_Add.truncate()for num in range(0,len(del_Filelist)):        file_Add = open(‘/tmp/python_Delfile‘,‘a‘)        file_Add.write(del_Filelist[num]+‘\n‘)file_Add.close()

    指令碼主要就是對比document和document_newdocument,通過replace修改擷取到的檔案路徑,對比另一個目錄的檔案路徑來判斷檔案是否兩邊都存在.

    其中的Addfile是指document裡面沒有但是在document_newdocument裡面有的檔案

          Delfile是指document裡面有但是在document_newdocument裡面沒有的檔案

本文出自 “空の心” 部落格,請務必保留此出處http://songknight.blog.51cto.com/2599480/1632808

[Python練習]對比兩個目錄裡面的檔案差異,並給出差異列表

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.