是的,Python命令行可以進(jìn)行文件操作。你可以使用Python內(nèi)置的os
和shutil
庫(kù)來(lái)執(zhí)行各種文件操作,如創(chuàng)建、讀取、寫(xiě)入和刪除文件等。以下是一些常見(jiàn)的文件操作示例:
with open("example.txt", "w") as file:
file.write("Hello, World!")
with open("example.txt", "r") as file:
content = file.read()
print(content)
with open("example.txt", "a") as file:
file.write("\nThis is an appended line.")
import os
if os.path.exists("example.txt"):
os.remove("example.txt")
import shutil
shutil.copy("source.txt", "destination.txt")
import shutil
shutil.move("source.txt", "destination.txt")
這些示例僅涉及Python命令行進(jìn)行文件操作的基本方法。你可以根據(jù)需要使用更高級(jí)的功能和庫(kù)來(lái)執(zhí)行更復(fù)雜的文件操作。