【Python】使用一个循环来简化重复的代码块,并使用异常处理来处理复制文件可能的错误情况。

使用一个循环来简化重复的代码块,并使用异常处理来处理复制文件可能的错误情况。

import time
import shutil

def copy_with_retry(source_file, destination_file, max_attempts=2, delay=5):
    for attempt in range(max_attempts):
        try:
            shutil.copy2(source_file, destination_file)
            print(f"复制文件: {source_file} -> {destination_file}")
            break  # 如果成功复制,跳出循环
        except Exception as e:
            print(f"复制文件时发生错误: {e}")
            if attempt < max_attempts - 1:
                print(f"等待 {delay} 秒后重试...")
                time.sleep(delay)
            else:
                print("已达到最大尝试次数,无法复制文件。")

source_file = "源文件路径"
destination_file = "目标文件路径"
copy_with_retry(source_file, destination_file)

这个函数 copy_with_retry 接受源文件路径、目标文件路径,以及可选的 max_attempts(最大尝试次数)和 delay(重试间隔)参数。它会尝试复制文件,如果失败,会等待一段时间后再次尝试,最多重试指定的次数。如果仍然失败,会给出相应的错误信息。

在这个简化的代码中,你只需要调用 copy_with_retry 函数,传递源文件路径和目标文件路径即可。它会自动进行复制操作并处理错误情况。

你可能感兴趣的:(python,python,java,服务器)