递归地将文件从子目录移动到父目录中的文件夹

时间:2015-01-03 23:07:56

标签: python recursion directory list-comprehension

在以下目录中,

/Drive/Company/images/full_res/

存在超过900个.jpg文件,如下所示:

Skywalker.jpg
Pineapple.jpg
Purple.jpg
White.jpg

从'full_res'上升一级('图像'),文件夹的数量几乎与' full_res'中的图像相同,并且大部分都是相应命名的,如下所示:

..
.
Skywalker/
Pineapple/
Purple/
White/
full_res/

我需要将full_res中的所有文件移动或复制到' images'中相应命名的文件夹中。同时将文件重命名为' export.jpg'。结果应该是这样的:

/Drive/Company/images/
----------------------
..
.
Skywalker/export.jpg
Pineapple/export.jpg
Purple/export.jpg
White/export.jpg

This is the closest thing我发现我的查询相关(我认为?),但我正在寻找一种方法来使用Python。这是我能够产生的一切:

import os, shutil

path = os.path.expanduser('~/Drive/Company/images/')
src = os.listdir(os.path.join(path, 'full_res/'))

for filename in src:
    images = [filename.endswith('.jpg') for filename in src]
    for x in images:
        x = x.split('.')
        print x[0] #log to console so I can see it's at least doing something (it's not)
        dest = os.path.join(path, x[0])
        if not os.path.exists(dest):
            os.makedirs(dest) #create the folder if it doesn't exist
        shutil.copyfile(filename, os.path.join(dest, '/export.jpg'))

这可能有很多错误,但我怀疑我最大的失误之一与我对列表理解概念的误解有关。在任何情况下,我一直在努力解决这个问题,以至于我现在可能已经手动移动并重命名了所有这些图像文件。任何和所有的帮助表示赞赏。

1 个答案:

答案 0 :(得分:1)

你离正确答案不远:

import os, shutil

path = os.path.expanduser('~/Drive/Company/images/')
src = os.listdir(os.path.join(path, 'full_res'))

for filename in src:
    if filename.endswith('.jpg'):
        basename = os.path.splitext(filename)[0]
        print basename #log to console so I can see it's at least doing something (it's not)
        dest = os.path.join(path, basename)
        if not os.path.exists(dest):
            os.makedirs(dest) #create the folder if it doesn't exist
        shutil.copyfile(os.path.join(path, 'full_res', filename), os.path.join(dest, 'export.jpg'))