以下為大家分享一篇Python 實作刪除某路徑下檔案及資料夾的實例講解,具有很好的參考價值,希望對大家有幫助。一起來看看吧
Python 實作刪除某路徑下檔案及資料夾的腳本
#!/usr/bin/env python import os import shutil delList = [] delDir = "/home/test" delList = os.listdir(delDir ) for f in delList: filePath = os.path.join( delDir, f ) if os.path.isfile(filePath): os.remove(filePath) print filePath + " was removed!" elif os.path.isdir(filePath): shutil.rmtree(filePath,True) print "Directory: " + filePath +" was removed!"
shutil是一個高層次的檔案操作模組。 True參數表示ignore_errors(忽略拷貝時候的錯誤)。
類似於高階API,而且主要強大之處在於其對檔案的複製與刪除操作更是比較支援好。
[附] os模組(庫)的使用
有關資料夾與檔案的查找,刪除等功能 在 os 模組中實作。
一、取得目前目錄
##1.1 s = os.getcwd() # s 中保存的是当前的执行目录(即执行所在的文件夹)
[注意]
如果是要取得程式運行的目前目錄所在位置,那麼可以使用os模組的os.getcwd()函數。
如果是要取得目前執行的腳本的所在目錄位置,那麼需要使用sys模組的sys.path[0]變數或sys.argv[0]來取得
#1.2 import os import time folder = time.strftime(r"%Y-%m-%d_%H-%M-%S",time.localtime()) os.makedirs(r'%s/%s'%(os.getcwd(),folder))
二、更改目前目錄
os.chdir( "/root/123") #将当前目录设为 "/root/123" #说明: 当指定的目录不存在时,引发异常。
##三、將一個路徑名稱分解為目錄名稱和檔案名稱兩部分
#
fpath , fname = os.path.split( "你要分解的路径")
a, b = os.path.split( "/root/123/test.txt" ) print a print b
/root/123/ test.txt
#四、分解檔案名稱的副檔名
fpathandname , fext = os.path.splitext( "你要分解的路径")
a, b = os.path.splitext( "/root/123/test.txt" ) print a print b
顯示:
/root/123/test .txt
b = os.path.exists( "你要判断的路径")
傳回值b: True 或False
六、判斷一個路徑是否檔案
b = os.path.isfile( "你要判断的路径")
七、判斷一個路徑是否目錄
b = os.path.isdir( "你要判断的路径")
傳回值b: True 或False
八、取得某目錄中的檔案及子目錄的清單
L = os.listdir( "你要判断的路径")
##
L = os.listdir( "/root/123" ) print L
[‘test.txt', ‘test.py','python'] #这里面既有文件也有子目录
os.makedirs( path ) # path 是"要创建的子目录"
#
os.makedirs("/root/123")
# #呼叫有可能失敗,可能的原因是:
(1) path 已存在時(不管是檔案還是資料夾)(2) 磁碟機不存在(3) 磁碟已滿
(4)磁碟是唯讀的或沒有寫入權限
第十、刪除子目錄
os.rmdir( path ) # path: "要刪除的子目錄"
##產生例外的可能原因:
( 1) path 不存在
(2) path 子目錄中有檔案或下級子目錄(3) 沒有操作權限或唯讀
os.remove( filename ) # filename: "要删除的文件名"
os.name( oldfileName, newFilename)
以上是Python 實作刪除某路徑下檔案及資料夾的詳細內容。更多資訊請關注PHP中文網其他相關文章!