Python 刪除檔案與資料夾

2021-09-24 21:12:34 字數 678 閱讀 7469

要刪除乙個檔案,需匯入os模組,使用其中的os.remove()函式:

示例

刪除檔案「test.txt」:

import os

os.remove(

"test.txt"

)

為了避免出錯,需要在刪除之前檢查檔案是否存在:

示例

刪除前檢查檔案是否存在:

import os

if os.path.exists(

"test.txt"

): os.remove(

"test.txt"

)else:

print(

"檔案不存在"

)

要刪除整個資料夾,使用os.rmdir()方法:

示例

刪除資料夾「testfolder」:

import os

os.rmdir(

"testfolder"

)

注意: 只能刪除空資料夾。

Python 刪除檔案 資料夾

import os filepath 需要刪除的檔案路徑 if os.path.exists filepath os.remove filepath else print 該檔案不存在 import os folderpath 需要刪除的資料夾路徑,該資料夾必須為空資料夾 if os.path.ex...

python 刪除資料夾 刪除非空資料夾

一般刪除檔案時使用os庫,然後利用os.remove path 即可完成刪除,如果刪除空資料夾則可使用os.removedirs path 即可,但是如果需要刪除整個資料夾,且資料夾非空時使用os.removedirs path 就會報錯了,此時可以使用shutil庫,該庫為python內建庫,是乙...

python 刪除檔案 夾

原文 import os 刪除檔案 os.remove 刪除空目錄 os.rmdir 遞迴刪除空目錄 os.removedirs 遞迴刪除目錄和檔案 類似dos命令deletetree 方法1 自力更生,艱苦創業 delete everything reachable from the direct...