共计 396 个字符,预计需要花费 1 分钟才能阅读完成。
要在指定目录创建文件,可以使用 Python 的 open()
函数来创建文件并指定路径。下面是一个示例代码:
import os
directory = "path/to/directory" # 指定目录的路径
file_name = "new_file.txt" # 新文件的名称
file_path = os.path.join(directory, file_name) # 合并目录和文件名
# 创建文件
with open(file_path, 'w') as file:
file.write("Hello, world!")
print(f" 文件 {file_name} 已创建在目录 {directory}")
替换 path/to/directory
为你想要创建文件的目录路径,运行上面的代码即可在指定目录创建一个名为 new_file.txt
的文件,并在文件中写入Hello, world!
。
丸趣 TV 网 – 提供最优质的资源集合!
正文完