在Python中,可以使用os
和pathlib
库进行文件读写操作
首先,确保已经导入了所需的库:
import os
from pathlib import Path
接下来,创建一个文件路径对象:
file_path = Path("example.txt")
if file_path.exists():
print("文件存在")
else:
print("文件不存在")
if file_path.exists():
with open(file_path, "r", encoding="utf-8") as file:
content = file.read()
print("文件内容:")
print(content)
else:
print("文件不存在")
with open(file_path, "w", encoding="utf-8") as file:
file.write("Hello, World!")
with open(file_path, "a", encoding="utf-8") as file:
file.write("\nThis is a new line.")
if file_path.exists():
os.remove(file_path)
print("文件已删除")
else:
print("文件不存在")
这些示例展示了如何使用pathlib
库进行基本的文件读写操作。你可以根据自己的需求修改这些代码片段。