簡體   English   中英

使用 glob.glob 從列表中循環多個文件夾

[英]Loop over multiple folders from list with glob.glob

如何遍歷定義的文件夾列表以及每個文件夾中的所有單個文件?

我試圖讓它復制每年文件夾中的所有月份。 但是當我運行它時什么也沒有發生..

import shutil
import glob


P4_destdir = ('Z:/Source P4')

yearlist = ['2014','2015','2016']

for year in yearlist:
    for file in glob.glob(r'{0}/*.csv'.format(yearlist)):
        print (file)
        shutil.copy2(file,P4_destdir)

我認為問題可能是您在源路徑中需要/

import shutil
import glob


P4_destdir = ('Z:/Source P4/')

yearlist = ['2014','2015','2016'] # assuming these files are in the same directory as your code.

for year in yearlist:
    for file in glob.glob(r'{0}/*.csv'.format(yearlist)):
        print (file)
        shutil.copy2(file,P4_destdir)

可能有問題的另一件事是目標文件是否尚不存在。 您可以使用os.mkdir創建它:

import os

dest = os.path.isdir('Z:/Source P4/') # Tests if file exists
if not dest:
    os.mkdir('Z:/Source P4/')

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM