python拷貝檔案到多個檔案夾

來源:互聯網
上載者:User

標籤:

主要用來做資料備份,每次用完以後再跑一次指令碼,又可以將檔案夾下的所有檔案拷貝到指定的檔案夾內

import os,sys,shutil;class cur_env:    path = sys.path[0]    #print(path)    os.chdir(path)# copy files to multiple foldersclass copyfiles:    def __init__(self, psrc, pdst):        self._src_path = psrc        self._dst_path = pdst        self._get_emails()        self._get_folders()    # get the log file list in the folder    def _get_emails(self):        files = os.listdir(self._src_path)        self._file_list = [x for x in files if x.endswith(‘.log‘)]    # get email account folders    def _get_folders(self):        temp = os.listdir(self._dst_path)        self._folders = [x for x in temp if os.path.isdir(x)]            # copy files to folders    def copyfiles_to_folders(self):        for folder in self._folders:            for file in self._file_list:                shutil.copy(self._src_path + ‘\\‘ + file,                            self._dst_path + ‘\\‘ + folder)    # del files in dst folders    def del_dst_files(self):        for folder in self._folders:            files = os.listdir(self._dst_path + ‘\\‘ + folder)            for file in files:                os.remove(self._dst_path + ‘\\‘+folder+‘\\‘+file)temp = copyfiles(‘C:\\Users\\sunyu\\Desktop\\emails‘,cur_env.path)    

我把資料備份在案頭的email檔案夾內。有兩個方法,一個是將檔案全部拷貝到指定根目錄下所有的檔案夾內,另外一個是將指定根目錄下所有檔案夾內的檔案清空。

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.