在Python中,可以使用os
和pathlib
庫進行文件讀寫操作
首先,確保已經(jīng)導入了所需的庫:
import os
from pathlib import Path
接下來,創(chuàng)建一個文件路徑對象:
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
庫進行基本的文件讀寫操作。你可以根據(jù)自己的需求修改這些代碼片段。