用python操作檔案和檔案夾

來源:互聯網
上載者:User

標籤:

 

我有一堆層級3到4級的檔案夾,這裡面存有的一些檔案是我需要的,一些是我不需要的。需要的檔案都儲存在名字中有‘Data‘的檔案夾內。現在我需要把這些檔案提取(拷貝)到一個指定的檔案夾裡。
一個檔案夾一個檔案夾去點開是一種方法,但是對於層級比較深的檔案夾是一件很枯燥的事情。
本著一切盡量自動化的原則,我用python來做這件事情。
這個需求歸納下來需要:

  • 從一個起始目錄開始
  • 遍曆每一個檔案夾
  • 如果檔案夾的名字中有‘Data‘,拷貝它的內容至目標檔案夾

python對檔案、檔案夾的操作是非常常見的需求,學會使用它們可以對付很多類似的批量處理檔案的工作。
我們用到的package有兩個:

  • os
  • subprocess

用到的函數是

  • os

    • os.listdir() 返回目前的目錄下的所有檔案和檔案夾名稱
    • os.path.isfile() 判斷某個名稱是不是檔案
    • os.path.isdir() 判斷某個名稱是不是檔案夾
    • os.chdir() 修改當前工作目錄,可以是絕對位址("C:\dir_a\dir_b"),或相對位址("dir_a")
  • subprocess

    • subprocess.call( " ", shell=True) ""裡填入需要執行的命令列命令,相當於在命令列視窗直接執行這個命令

瞭解了這些函數後,放出代碼。注意IterCopyDocs是一個迭代函數,自己調用自己,目的是類比對目錄的遍曆。

import subprocessimport osdef IterCopyDocs(dstPath):    ids = os.listdir()    for id in ids:        if os.path.isdir(id):            if ‘Data‘ in id:                os.chdir(id)                pics = os.listdir()                for pic in pics:                    if os.path.isfile(pic):                        print("copy \""+pic+"\" "+dstPath)                        subprocess.call("copy \""+pic+"\" "+dstPath, shell=True)                os.chdir(‘..\\‘)            else:                os.chdir(id)                IterCopyDocs(dstPath)                os.chdir(‘..\\‘)subprocess.call("dir", shell=True)root_dir = "C:\\Users\\Administrator\\Downloads"dst_dir = "C:\\Users\\Administrator\\Downloads"os.chdir(root_dir) # root directory of dataIterCopyDocs(dst_dir) # destination directory

(完)

 

用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.