如何使用python重命名文件夹中的多个文件?

时间:2015-06-10 20:06:54

标签: python file python-3.x rename file-rename

我的'我的文档'中有超过1000个文件夹。在每个文件夹中,只有4张照片需要按顺序命名为“北”,“东”,“南”和“西”。目前它们被命名为DSC_XXXX。我写了这个脚本,但它没有执行。

import sys, os

folder_list = []
old_file_list = []
newnames = [North, South, East, West]

for file in os.listdir(sys.argv[1]):
    folder_list.append(file)

 for i in range(len(folder_list)):
    file = open(folder_list[i], r+)
    for file in os.listdir(sys.argv[1] + '/' folder_list[i]):
       old_file_list.append(file)
       os.rename(old_file_list, newnames[i])

我的想法是获取1000个文件夹的所有名称并将它们存储在folder_list中。然后打开每个文件夹并将4个图片名称保存在old_file_list中。从那里我想使用os.rename(old_file_list,newnames [i])将4张照片重命名为North East South和West。然后我想要循环“我的文档”中的多个文件夹。我是python的新手,任何帮助或建议将不胜感激。

2 个答案:

答案 0 :(得分:3)

您不需要所有列表,只需动态重命名所有文件。

{{1}}

答案 1 :(得分:1)

以下是我如何使用antipathy [1]:

# untested

from antipathy import Path

def check_folder(folder):
    "returns four file names sorted alphebetically, or None if file names do not match criteria"
    found = folder.listdir()
    if len(found) != 4:
        return None
    elif not all(fn.startswith('DSC_') for fn in found):
        return None
    else:
        return sorted(found)

def rename(folder, files):
    "rename the four files from DSC_* to North East South West, keeping the extension"
    for old, new in zip(files, ('North', 'East', 'South', 'West')):
        new += old.ext
        folder.rename(old, new)

if __name__ == '__main__':
    for name in Path.listdir(sys.argv[1]):
        if not name.isdir():
            continue
        files = check_folder(name)
        if files is None:
            continue
        rename(name, files)

[1]免责声明:antipathy是我的项目之一