項目總結(一)------Python對文件和目錄進行操作 (file對象/os/os.path/shutil 模塊)

使用Python過程中,經常需要對文件和目錄進行操作。所有file類/os/os.path/shutil模塊時每個Python程序員必須學習的。

下面通過兩段code來對其進行學習。


1. 學習 file對象
2. 學習os/os.path/shutil模塊

1.file對象學習:

項目中需要從文件中讀取配置參數,python可以從Json,xml等文件中讀取數據,然後轉換成Python的內容數據結構。

下面以Json文件爲例,實現從Json文件中獲取配置參數。


code運行環境:python27+eclipse+pydev

Json文件名字:config_file.json
Json文件path:C:\temp\config_file.json
Json文件中的內容:
{"user":"Tom","username":"root_tom","password":"Jerryispig","ipaddr":"10.168.79.172"}
{"user":"Jerry","username":"root_jerry","password":"Tomispig","ipaddr":"10.168.79.173"}

代碼如下:

import json  #use json file ,you must import json.  
  
def verify_file_class():  
    file_json=open(r'C:\temp\config_file.json','r')  # open config_file.json file with 'r'  
    for each_line in file_json.readlines():          #read each line data  
        print each_line                              # verify each line data by print each line data  
      
        each_line_dict = json.loads(each_line)       # each row of the data into the 'dict'type of python  
          
        print 'the type of the each_line_dict:{type}'.format(type=type(each_line_dict))  # verify whether is‘dict’type  
          
        print 'user is: {user}'.format(user=each_line_dict['user'])  
        print 'username is: {username}'.format(username=each_line_dict['username'])  
        print 'password is: {password}'.format(password=each_line_dict['password'])  
        print 'ipaddr is: {ipaddr} \n'.format(ipaddr=each_line_dict['ipaddr'])  
          
        #use username,password, ipaddr ( enjoy your programming ! )  
      
    file_json.close()   # don't forgot to close your open file before.  
  
if __name__ == '__main__':  
    verify_file_class()


運行結果:

{"user":"Tom","username":"root_tom","password":"Jerryispig","ipaddr":"10.168.79.172"}  
the type of the each_line_dict:<type 'dict'>  
user is: Tom  
username is: root_tom  
password is: Jerryispig  
ipaddr is: 10.168.79.172   
  
{"user":"Jerry","username":"root_jerry","password":"Tomispig","ipaddr":"10.168.79.173"}  
the type of the each_line_dict:<type 'dict'>  
user is: Jerry  
username is: root_jerry  
password is: Tomispig  
ipaddr is: 10.168.79.173

學習os/os.path/shutil模塊

在任何一個稍微大一點的項目中,少不了的需要對目錄進行各種操作,

比如創建目錄,刪除目錄,目錄的合併等各種有關目錄的操作。

下面以一段code爲例,來實現對os/os.path/shutil模塊的學習。


下面的code實現的是刪除文件夾installation內的所有文件(裏面有文件和文件夾),

注意:是刪除文件夾installation裏面所有的文件,並不刪除installation這個文件夾。


代碼如下:

code運行環境:python27+eclipse+pydev

import os
import shutil 


def empty_folder(dir):
    try:
        for each in os.listdir(dir):
            path = os.path.join(dir,each)
            if os.path.isfile(path):
                os.remove(path)
            elif os.path.isdir(path):
                shutil.rmtree(path)
        return 0
    except Exception as e:
        return 1


if __name__ == '__main__':
    dir_path=r'D:\installation'
    empty_folder(dir_path)

上面短短的幾行代碼,就包含了6個與os/os.path/shutil模塊相關的API。分別是:

1. os.listdir(dir)
2. os.path.join(dir, each)
3. os.path.isfile(path) /os.path.isdir(path)
4. os.remove(path)
5. shutil.rmtree(path)

下面分別對上面6個最常見的與目錄有關的API進行簡單的學習。

1. os.listdir(dir)

這個函數返回指定目錄下的所有文件和目錄名組成的一個列表。

就是說返回一個列表,這個列表裏的元素是由指定目錄下的所有文件和目錄組成的。

>>> import os
>>> os.listdir(r'c:\\')
['$Recycle.Bin', 'Documents and Settings', 'eclipse', 'hiberfil.sys', 'inetpub', 'Intel', 'logon_log.txt', 'MSOCache', 'pagefile.sys', 'PerfLogs'<span style="font-family: Arial, Helvetica, sans-serif;">]</span>

2. os.path.join(dir, each)

連接目錄與文件名或目錄

>>> import os
>>> os.path.join(r'c:\doog',r's.txt')
'c:\\doog\\s.txt'
>>> os.path.join(r'c:\doog',r'file')
'c:\\doog\\file'

3. os.path.isfile(path) / os.path.isdir(path)

os.path.isfile(path) 用於判斷path是否爲文件,若是文件,返回True,否則返回False。

os.path.isdir(path)  用於判斷path是否爲目錄,若是目錄,返回True,否則返回False。

>>> import os
>>> filepath=r'C:\Program Files (x86)\Google\Chrome\Application\VisualElementsManifest.xml'
>>> os.path.isdir(filepath)
False
>>> os.path.isfile(filepath)
True

4. os.remove(path)

刪除指定文件。無論文件是否是空,都可以刪除。

注意:這個函數只能刪除文件,不能刪除目錄,否則會報錯。

>>> import os
>>> os.removedirs(r'c:\temp\david\book\python.txt')

5. shutil.rmtree(path)

如果目錄中有文件和目錄,也就是說一個目錄中不管有多少子目錄,這些子目錄裏面不管有多少目錄和文件。

我想刪除這個上層目錄(注意:是刪除這個目錄及其這個目錄中的所有文件和目錄)。如何做呢?

就需要使用shutil模塊中的rmtree()函數。

>>> import shutil
>>> shutil.rmtree(r'C:\no1')

參考資料:os/os.path/shutil

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章