Python檔案夾與檔案的操作

來源:互聯網
上載者:User

http://www.cnblogs.com/yuxc/archive/2011/08/01/2124012.html

 

最近在寫的程式頻繁地與檔案操作打交道,這塊比較弱,還好在百度上找到一篇不錯的文章,這是原文傳送門,我對原文稍做了些改動。

有關檔案夾與檔案的尋找,刪除等功能 在 os 模組中實現。使用時需先匯入這個模組,

匯入的方法是:

import os

一、取得目前的目錄

s = os.getcwd()

# s 中儲存的是目前的目錄(即檔案夾)

比如運行abc.py,那麼輸入該命令就會返回abc所在的檔案夾位置。

舉個簡單例子,我們將abc.py放入A檔案夾。並且希望不管將A檔案夾放在硬碟的哪個位置,都可以在A檔案夾內產生一個新檔案夾。且檔案夾的名字根據時間自動產生。

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( "C:\\123")

#將目前的目錄設為 "C:\123", 相當於DOC命令的 CD C:\123   

#說明: 當指定的目錄不存在時,引發異常。

異常類型:WindowsError

Linux下沒去試,不知是哪種

 

三 將一個路徑名分解為目錄名和檔案名稱兩部分

fpath , fname = os.path.split( "你要分解的路徑")

例如:

a, b = os.path.split( "c:\\123\\456\\test.txt" )

print a

print b

顯示:

c:\123\456

test.txt

 

四   分解檔案名稱的副檔名

fpathandname , fext = os.path.splitext( "你要分解的路徑")

例如:

a, b = os.path.splitext( "c:\\123\\456\\test.txt" )

print a

print b

顯示:

c:\123\456\test

.txt

 

五、判斷一個路徑( 目錄或檔案)是否存在

b = os.path.exists( "你要判斷的路徑")

傳回值b: True 或 False

 

六、判斷一個路徑是否檔案

b = os.path.isfile( "你要判斷的路徑")

傳回值b: True 或 False

 

七、判斷一個路徑是否目錄

b = os.path.isdir( "你要判斷的路徑")

傳回值b: True 或 False

 

八、擷取某目錄中的檔案及子目錄的列表        

L = os.listdir( "你要判斷的路徑")

例如:

L = os.listdir( "c:/" )

print L

顯示 :

['1.avi', '1.jpg', '1.txt', 'CONFIG.SYS', 'Inetpub', 'IO.SYS', 'KCBJGDJC', 'KCBJGDYB', 'KF_GSSY_JC', 'MSDOS.SYS', 'MSOCache', 'NTDETECT.COM', 'ntldr', 'pagefile.sys', 'PDOXUSRS.NET', 'Program Files', 'Python24', 'Python31', 'QQVideo.Cache', 'RECYCLER', 'System Volume Information', 'TDDOWNLOAD', 'test.txt', 'WINDOWS']

這裡面既有檔案也有子目錄

1 擷取某指定目錄下的所有子目錄的列表

def getDirList( p ):

        p = str( p )

        if p=="":

              return [ ]

        p = p.replace( "/","\\")

        if p[ -1] != "\\":

             p = p+"\\"

        a = os.listdir( p )

        b = [ x   for x in a if os.path.isdir( p + x ) ]

        return b

print   getDirList( "C:\\" )

結果:

['Documents and Settings', 'Downloads', 'HTdzh', 'KCBJGDJC', 'KCBJGDYB', 'KF_GSSY_JC', 'MSOCache', 'Program Files', 'Python24', 'Python31', 'QQVideo.Cache', 'RECYCLER', 'System Volume Information', 'TDDOWNLOAD', 'WINDOWS']

2 擷取某指定目錄下的所有檔案的列表

def getFileList( p ):

        p = str( p )

        if p=="":

              return [ ]

        p = p.replace( "/","\\")

        if p[ -1] != "\\":

             p = p+"\\"

        a = os.listdir( p )

        b = [ x   for x in a if os.path.isfile( p + x ) ]

        return b

print   getFileList( "C:\\" )

結果:

['1.avi', '1.jpg', '1.txt', '123.txt', '12345.txt', '2.avi', 'a.py', 'AUTOEXEC.BAT', 'boot.ini', 'bootfont.bin', 'CONFIG.SYS', 'IO.SYS', 'MSDOS.SYS', 'NTDETECT.COM', 'ntldr', 'pagefile.sys', 'PDOXUSRS.NET', 'test.txt']

 

九、建立子目錄

os.makedirs(   path )   # path 是"要建立的子目錄"

例如:

os.makedirs(   "C:\\123\\456\\789")

調用有可能失敗,可能的原因是:

(1) path 已存在時(不管是檔案還是檔案夾)

(2) 磁碟機不存在

(3) 磁碟已滿

(4)磁碟是唯讀或沒有寫入權限

十、刪除子目錄

os.rmdir( path )   # path: "要刪除的子目錄"

產生異常的可能原因:

(1) path 不存在

(2) path 子目錄中有檔案或下級子目錄

(3) 沒有操作許可權或唯讀

測試該函數時,請自已先建立子目錄。

十一、刪除檔案

os.remove(   filename )   # filename: "要刪除的檔案名稱"

產生異常的可能原因:

(1)   filename 不存在

(2) 對filename檔案, 沒有操作許可權或唯讀。

十二、檔案改名

os.name( oldfileName, newFilename)

產生異常的原因:

(1) oldfilename 舊檔案名稱不存在

(2) newFilename 新檔案已經存在時,此時,您需要先刪除 newFilename 檔案。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.