把文件路径写入text文件中
时间: 2024-04-13 09:30:19 浏览: 57
Delphi读取文件和写入文件总结
4星 · 用户满意度95%
你可以使用以下代码将文件路径写入文本文件中:
```python
def write_path_to_file(file_path, text_file_path):
with open(text_file_path, 'w') as file:
file.write(file_path)
print("文件路径已写入文本文件中。")
# 示例用法
file_path = '/path/to/file.txt'
text_file_path = '/path/to/output.txt'
write_path_to_file(file_path, text_file_path)
```
在以上示例中,`write_path_to_file` 函数接受两个参数:`file_path` 是要写入的文件路径,`text_file_path` 是要将路径写入的文本文件路径。函数会打开文本文件,并将文件路径写入其中。最后,它会打印一条消息确认操作完成。
你可以替换示例代码中的 `file_path` 和 `text_file_path` 为你实际的路径。确保你有权限读写这些文件。
阅读全文