中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
扶风县| 十堰市| 长泰县| 灌云县| 洞口县| 如皋市| 安丘市| 福州市| 大同县| 榕江县| 阜南县| 左权县| 天峨县| 屏东市| 咸丰县| 石林| 沂水县| 房产| 盘山县| 衡阳县| 漯河市| 鹤峰县| 黎川县| 织金县| 开平市| 丰都县| 舞阳县| 宣恩县| 奉化市| 察哈| 南投市| 商南县| 平定县| 酒泉市| 隆林| 岳池县| 沾化县| 乌拉特中旗| 怀柔区| 巧家县| 浮山县|