是的,Python命令行可以進行文件操作。你可以使用Python內置的os
和shutil
庫來執行各種文件操作,如創建、讀取、寫入和刪除文件等。以下是一些常見的文件操作示例:
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命令行進行文件操作的基本方法。你可以根據需要使用更高級的功能和庫來執行更復雜的文件操作。