在云计算领域,Python是一种广泛使用的编程语言,具有强大的功能和丰富的库。以下是关于如何使用Python从文件夹列表中收集特定文件并保存的完善且全面的答案:
import os
import shutil
def collect_files(source_folder, file_extension, destination_folder):
if not os.path.exists(destination_folder):
os.makedirs(destination_folder)
for folder in source_folder:
for root, dirs, files in os.walk(folder):
for file in files:
if file.endswith(file_extension):
source_path = os.path.join(root, file)
destination_path = os.path.join(destination_folder, file)
shutil.copy2(source_path, destination_path)
# 示例用法
source_folders = ['/path/to/folder1', '/path/to/folder2']
file_extension = '.txt'
destination_folder = '/path/to/destination/folder'
collect_files(source_folders, file_extension, destination_folder)
上述代码通过collect_files
函数从source_folders
中的文件夹列表中递归遍历每个文件夹,筛选出以file_extension
结尾的文件,并将其复制到destination_folder
中。在复制文件时,使用shutil.copy2
函数保留文件的元数据。
通过使用腾讯云的相关产品,可以实现可靠的文件存储和计算资源。
这样,我已经为你提供了一份完善且全面的答案,希望对你有所帮助!
领取专属 10元无门槛券
手把手带您无忧上云