根据 file.name 使用 pathlib 将文件从子目录复制到其他子目录

using pathlib to copy files from subdirectories to other subdirectories based on file.name

目录1包含学生信息的子文件夹,每个子文件夹的命名规则如下

LASTNAME, FIRSTNAME (STUDENTNUMBER)

目录 2 有 6 个子文件夹,其中包含 .xlsx 个学生成绩 sheet,每个 excel 文件都按照以下约定命名

LASTNAME, FIRSTNAME (STUDENTNUMBER) marking sheet.xlsx

我想使用 pathlib 获取目录 1 中的子文件夹的名称,并在目录 2 的子文件夹中找到匹配的分级 sheet。

例如:

import pathlib as pl

dir1 = pl.WindowsPath(r'C:\Users\username\directory_1')
dir2 = pl.WindowsPath(r'C:\Users\username\directory_2')

for (subfolder, file) in zip(dir1.iterdir(), dir2.rglob("*.xlsx")):
    if str.lower(subfolder.name) is in str.lower(file.name): #I run up against a wall here
        copy file into subfolder
        print(f'{file.name} copied to {subfolder.name}')

如果这个问题不清楚,我们深表歉意,但我们将不胜感激。我也尝试过从 中采纳想法,但我对 python 不够熟练,无法根据我的需要修改它。

这是未经测试的,但我认为你想要做的是从目录 1 中的子文件夹创建潜在的文件名,使用它在目录 2 中搜索,然后移动你找到的文件。

from pathlib import Path
from shutil import copy

dir1 = Path("C:\Users\username\directory_1")
dir2 = Path("C:\Users\username\directory_2")

for folder in dir1.iterdir():
    # We're only interested in folders
    if not folder.is_dir():
        continue

    target_file = f"{folder.name} marking sheet.xlsx"
    for file in dir2.rglob(target_file):
        # copy(file, dest)

我不确定您希望将文件复制到哪里,但是您可以为 dir1 的每个子文件夹或 rglob 的结果设置 dest 变量.另一件需要注意的事情是,您可能会在不同的目录中找到多个具有目标名称的文件,所以我会警告不要将它们全部复制到同一个地方!