的步骤如下:
import os
directory = "path/to/directory" # 目录路径
if not os.path.exists(directory): # 检查目录是否存在
os.makedirs(directory) # 创建目录
这段代码会创建一个名为directory
的目录,如果该目录不存在的话。
file_path = os.path.join(directory, "example.txt") # 文件路径
with open(file_path, "w") as file:
file.write("This is an example text.") # 写入文件内容
这段代码会在directory
目录下创建一个名为example.txt
的文件,并将文本内容写入文件中。
完整的代码示例:
import os
directory = "path/to/directory" # 目录路径
if not os.path.exists(directory): # 检查目录是否存在
os.makedirs(directory) # 创建目录
file_path = os.path.join(directory, "example.txt") # 文件路径
with open(file_path, "w") as file:
file.write("This is an example text.") # 写入文件内容
这样,你就成功地创建了一个目录并将.txt文件保存到其中。
没有搜到相关的沙龙
领取专属 10元无门槛券
手把手带您无忧上云