在每次运行程序时创建新文件,可以通过以下步骤实现:
os
或pathlib
库。以下是一个示例代码(使用Python的os
库):
import os
import time
def create_new_file():
# 确定文件夹路径
folder_path = "path/to/folder"
# 确定文件名(使用时间戳)
file_name = f"new_file_{int(time.time())}.txt"
# 构建文件路径
file_path = os.path.join(folder_path, file_name)
# 检查文件是否已存在
if os.path.exists(file_path):
print("文件已存在")
return
# 创建新文件
with open(file_path, "w") as file:
file.write("这是新文件的内容")
print("新文件已创建")
create_new_file()
这个示例代码会在指定的文件夹路径下创建一个以时间戳命名的新文件,并在文件中写入内容。你可以根据实际需求进行修改和扩展。
腾讯云相关产品和产品介绍链接地址:
没有搜到相关的沙龙
领取专属 10元无门槛券
手把手带您无忧上云