python命令行能進(jìn)行文件操作嗎

小樊
81
2024-11-16 23:39:53

是的,Python命令行可以進(jìn)行文件操作。你可以使用Python內(nèi)置的osshutil庫(kù)來(lái)執(zhí)行各種文件操作,如創(chuàng)建、讀取、寫(xiě)入和刪除文件等。以下是一些常見(jiàn)的文件操作示例:

  1. 創(chuàng)建文件:
with open("example.txt", "w") as file:
    file.write("Hello, World!")
  1. 讀取文件:
with open("example.txt", "r") as file:
    content = file.read()
    print(content)
  1. 寫(xiě)入文件(追加內(nèi)容):
with open("example.txt", "a") as file:
    file.write("\nThis is an appended line.")
  1. 刪除文件:
import os

if os.path.exists("example.txt"):
    os.remove("example.txt")
  1. 復(fù)制文件:
import shutil

shutil.copy("source.txt", "destination.txt")
  1. 移動(dòng)文件:
import shutil

shutil.move("source.txt", "destination.txt")

這些示例僅涉及Python命令行進(jìn)行文件操作的基本方法。你可以根據(jù)需要使用更高級(jí)的功能和庫(kù)來(lái)執(zhí)行更復(fù)雜的文件操作。

0