91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

python linux文件操作如何實現

小樊
82
2024-11-15 14:42:01
欄目: 編程語言

在Python中,可以使用內置的osshutil模塊來執行Linux文件操作。以下是一些常見的文件操作示例:

  1. 創建文件:
import os

file_path = "example.txt"

# 檢查文件是否存在
if not os.path.exists(file_path):
    # 創建一個新文件
    with open(file_path, "w") as file:
        file.write("Hello, World!")
  1. 讀取文件:
import os

file_path = "example.txt"

# 檢查文件是否存在
if os.path.exists(file_path):
    # 讀取文件內容
    with open(file_path, "r") as file:
        content = file.read()
        print(content)
  1. 遍歷目錄:
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)
  1. 創建目錄:
import os

directory_path = "/path/to/directory"

# 檢查目錄是否存在
if not os.path.exists(directory_path):
    # 創建一個新目錄
    os.makedirs(directory_path)
  1. 刪除文件:
import os

file_path = "example.txt"

# 檢查文件是否存在
if os.path.exists(file_path):
    # 刪除文件
    os.remove(file_path)
  1. 刪除目錄:
import os

directory_path = "/path/to/directory"

# 檢查目錄是否存在
if os.path.exists(directory_path):
    # 刪除目錄及其內容
    shutil.rmtree(directory_path)
  1. 重命名文件或目錄:
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)
  1. 復制文件:
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)
  1. 移動文件:
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環境下執行基本的文件操作。你可以根據需要調整這些示例以滿足你的需求。

0
威海市| 尉氏县| 永平县| 颍上县| 尖扎县| 新竹县| 邻水| 达拉特旗| 普兰县| 阳西县| 怀安县| 敦煌市| 南汇区| 隆德县| 高平市| 安阳县| 开阳县| 青铜峡市| 集安市| 肥城市| 岑巩县| 遵义市| 织金县| 凌云县| 合江县| 峨眉山市| 泾川县| 洛阳市| 长丰县| 静乐县| 德令哈市| 若尔盖县| 湖口县| 福清市| 两当县| 崇州市| 莱阳市| 台安县| 新丰县| 赞皇县| 宜城市|