在日常工作中,有时我们需要比较两个文件夹中的文件,找出那些只存在于其中一个文件夹中的文件,并将这些文件移动到一个新的文件夹中。本文将介绍如何使用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脚本,我们可以轻松地查找并移动两个文件夹中不重名的文件。这个方法可以应用于许多实际场景中,例如文件备份、数据清理等。希望本文对你有所帮助,如果有任何问题,欢迎在评论区交流讨论。