要给输出文件添加前缀,可以使用以下步骤和代码示例:
创建一个新的输出文件名,该文件名包含要添加的前缀和原始文件名。
将输出文件重命名为新的文件名。
下面是一个Python代码示例,演示了如何给输出文件添加前缀:
import os
def add_prefix_to_output_file(prefix, output_file):
# 获取输出文件的目录和文件名
output_dir, output_filename = os.path.split(output_file)
# 拼接新的输出文件名
new_output_filename = prefix + output_filename
# 生成新的输出文件路径
new_output_file = os.path.join(output_dir, new_output_filename)
# 重命名输出文件
os.rename(output_file, new_output_file)
# 示例使用
prefix = "prefix_" # 要添加的前缀
output_file = "output.txt" # 原始输出文件名
# 添加前缀到输出文件
add_prefix_to_output_file(prefix, output_file)
在上面的示例中,add_prefix_to_output_file
函数接受一个前缀和输出文件的路径作为参数。它首先获取输出文件的目录和文件名,然后拼接新的输出文件名。最后,它使用os.rename
函数将输出文件重命名为新的文件名。
请注意,上述示例假设输出文件位于当前工作目录中。如果输出文件位于其他目录中,您需要相应地修改代码中的路径。