溫馨提示×

如何結合path庫進行文件讀寫操作

小樊
88
2024-08-30 10:04:47
欄目: 編程語言

在Python中,可以使用ospathlib庫進行文件讀寫操作

首先,確保已經(jīng)導入了所需的庫:

import os
from pathlib import Path

接下來,創(chuàng)建一個文件路徑對象:

file_path = Path("example.txt")

1. 檢查文件是否存在

if file_path.exists():
    print("文件存在")
else:
    print("文件不存在")

2. 讀取文件內容

if file_path.exists():
    with open(file_path, "r", encoding="utf-8") as file:
        content = file.read()
        print("文件內容:")
        print(content)
else:
    print("文件不存在")

3. 寫入文件內容

with open(file_path, "w", encoding="utf-8") as file:
    file.write("Hello, World!")

4. 在文件末尾追加內容

with open(file_path, "a", encoding="utf-8") as file:
    file.write("\nThis is a new line.")

5. 刪除文件

if file_path.exists():
    os.remove(file_path)
    print("文件已刪除")
else:
    print("文件不存在")

這些示例展示了如何使用pathlib庫進行基本的文件讀寫操作。你可以根據(jù)自己的需求修改這些代碼片段。

0