Python 刪除檔案 資料夾

2021-10-24 14:23:52 字數 499 閱讀 7260

import os

# filepath : 需要刪除的檔案路徑

if os.path.exists(filepath)

: os.remove(filepath)

else

:print

('該檔案不存在'

)

import os

# folderpath : 需要刪除的資料夾路徑, 該資料夾必須為空資料夾

if os.path.exists(folderpath)

: os.removedirs(folderpath)

else

:print

('該資料夾不存在'

)

import shutil

# folderpath : 需要刪除的資料夾路徑

shutil.rmtree(folderpath)

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...

python 刪除檔案和資料夾

1 刪除檔案 刪除檔案 def deletefile strfilename filename unicode strfilename,utf8 if os.path.isfile filename try os.remove filename except pass 2 刪除資料夾 刪除指定目錄,...