在Python中,可以使用內置的os
和shutil
模塊來執行Linux文件操作。以下是一些常見的文件操作示例:
import os
file_path = "example.txt"
# 檢查文件是否存在
if not os.path.exists(file_path):
# 創建一個新文件
with open(file_path, "w") as file:
file.write("Hello, World!")
import os
file_path = "example.txt"
# 檢查文件是否存在
if os.path.exists(file_path):
# 讀取文件內容
with open(file_path, "r") as file:
content = file.read()
print(content)
import os
directory_path = "/path/to/directory"
# 遍歷目錄中的所有文件
for file_name in os.listdir(directory_path):
file_path = os.path.join(directory_path, file_name)
if os.path.isfile(file_path):
print(file_path)
import os
directory_path = "/path/to/directory"
# 檢查目錄是否存在
if not os.path.exists(directory_path):
# 創建一個新目錄
os.makedirs(directory_path)
import os
file_path = "example.txt"
# 檢查文件是否存在
if os.path.exists(file_path):
# 刪除文件
os.remove(file_path)
import os
directory_path = "/path/to/directory"
# 檢查目錄是否存在
if os.path.exists(directory_path):
# 刪除目錄及其內容
shutil.rmtree(directory_path)
import os
old_file_path = "old_example.txt"
new_file_path = "new_example.txt"
# 檢查舊文件是否存在
if os.path.exists(old_file_path):
# 重命名文件
os.rename(old_file_path, new_file_path)
import shutil
src_file_path = "source_example.txt"
dst_file_path = "destination_example.txt"
# 檢查源文件是否存在
if os.path.exists(src_file_path):
# 復制文件
shutil.copy2(src_file_path, dst_file_path)
import shutil
src_file_path = "source_example.txt"
dst_file_path = "destination_example.txt"
# 檢查源文件是否存在
if os.path.exists(src_file_path):
# 移動文件
shutil.move(src_file_path, dst_file_path)
這些示例展示了如何使用Python在Linux環境下執行基本的文件操作。你可以根據需要調整這些示例以滿足你的需求。