亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

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
容城县| 廊坊市| 九龙城区| 咸宁市| 墨脱县| 昆明市| 修文县| 怀集县| 肃宁县| 城口县| 朝阳区| 资兴市| 革吉县| 靖宇县| 聊城市| 盐津县| 杭锦后旗| 兴仁县| 沙湾县| 乌拉特后旗| 开阳县| 突泉县| 建湖县| 广南县| 湘潭市| 蓬莱市| 梅河口市| 房产| 洪雅县| 贵定县| 高州市| 旌德县| 唐海县| 云梦县| 辉南县| 葫芦岛市| 辽阳市| 兴仁县| 沙湾县| 望奎县| 东阿县|