使用Python查找并移动两个文件夹中不重名的文件

在日常工作中,有时我们需要比较两个文件夹中的文件,找出那些只存在于其中一个文件夹中的文件,并将这些文件移动到一个新的文件夹中。本文将介绍如何使用Python脚本来实现这一任务,并详细讲解代码的实现过程。

场景描述

假设我们有两个文件夹,分别命名为 folder1 和 folder2。我们希望找到在 folder2 中存在,但在 folder1 中不存在的文件,并将这些文件移动到一个新的文件夹中。

实现步骤

1. 获取文件名列表

首先,我们需要获取两个文件夹中的所有文件名,并去除文件后缀名,只保留文件的基本名称。这可以通过 os.listdir 和 os.path.splitext 函数来实现。

import os

# 指定两个文件夹路径
folder1 = "yes"
folder2 = "not"

# 获取文件名(不包括后缀)
yes_list = os.listdir(folder1)
yes_list_1 = [os.path.splitext(i)[0] for i in yes_list]

not_list = os.listdir(folder2)
not_list_1 = [os.path.splitext(i)[0] for i in not_list]

2. 查找非交叉的文件名

接下来,我们需要找出那些只存在于 folder2 中,但不在 folder1 中的文件名。

# 找到非交叉的文件名
not_common = [i for i in not_list if os.path.splitext(i)[0] not in yes_list_1]

print(not_common)

3. 创建新文件夹

为了存放那些非交叉的文件,我们需要创建一个新的文件夹。如果该文件夹已经存在,使用 os.makedirs 的 exist_ok=True 参数可以避免抛出异常。

import os

# 创建新文件夹
new_folder = "unique_files"
os.makedirs(new_folder, exist_ok=True)

4. 移动文件到新文件夹

最后,我们将 not_common 列表中的文件从 folder2 移动到新创建的文件夹中。使用 shutil.move 可以轻松实现这一操作。

import shutil

# 移动文件到新文件夹
for filename in not_common:
    source_path = os.path.join(folder2, filename)
    destination_path = os.path.join(new_folder, filename)

    # 移动文件
    if os.path.exists(source_path):
        shutil.move(source_path, destination_path)
        print(f"Moved: {filename} to {new_folder}")
    else:
        print(f"File not found: {filename}")

print("Files moved successfully!")

5. 完整代码

以下是完整的代码示例:

import os
import shutil

# 示例:指定两个文件夹路径
folder1 = "yes"
folder2 = "not"

# 获取文件名(不包括后缀)
yes_list = os.listdir(folder1)
yes_list_1 = [os.path.splitext(i)[0] for i in yes_list]

not_list = os.listdir(folder2)
not_list_1 = [os.path.splitext(i)[0] for i in not_list]

# 找到非交叉的文件名,并替换后缀
not_common = [i for i in not_list if os.path.splitext(i)[0] not in yes_list_1]

print(not_common)
# 创建新文件夹
new_folder = "unique_files"
os.makedirs(new_folder, exist_ok=True)

# 移动文件到新文件夹
for filename in not_common:
    source_path = os.path.join(folder2, filename)
    destination_path = os.path.join(new_folder, filename)

    # 移动文件
    if os.path.exists(source_path):
        shutil.move(source_path, destination_path)
        print(f"Moved: {filename} to {new_folder}")
    else:
        print(f"File not found: {filename}")

print("Files moved successfully!")

通过上述Python脚本,我们可以轻松地查找并移动两个文件夹中不重名的文件。这个方法可以应用于许多实际场景中,例如文件备份、数据清理等。希望本文对你有所帮助,如果有任何问题,欢迎在评论区交流讨论。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

lindsayshuo

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值