Python對文件和目錄進(jìn)行操作的方法(file對象/os/os.path/shutil 模塊)
使用Python過程中,經(jīng)常需要對文件和目錄進(jìn)行操作。所有file類/os/os.path/shutil模塊時每個Python程序員必須學(xué)習(xí)的。
下面通過兩段code來對其進(jìn)行學(xué)習(xí)。
1. 學(xué)習(xí) file對象
2. 學(xué)習(xí)os/os.path/shutil模塊
1.file對象學(xué)習(xí):
項(xiàng)目中需要從文件中讀取配置參數(shù),python可以從Json,xml等文件中讀取數(shù)據(jù),然后轉(zhuǎn)換成Python的內(nèi)容數(shù)據(jù)結(jié)構(gòu)。
下面以Json文件為例,實(shí)現(xiàn)從Json文件中獲取配置參數(shù)。
code運(yùn)行環(huán)境:python27+eclipse+pydev
Json文件名字:config_file.json
Json文件path:C:\temp\config_file.json
Json文件中的內(nèi)容:
{"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()
運(yùn)行結(jié)果:
{"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
學(xué)習(xí)os/os.path/shutil模塊
在任何一個稍微大一點(diǎn)的項(xiàng)目中,少不了的需要對目錄進(jìn)行各種操作,
比如創(chuàng)建目錄,刪除目錄,目錄的合并等各種有關(guān)目錄的操作。
下面以一段code為例,來實(shí)現(xiàn)對os/os.path/shutil模塊的學(xué)習(xí)。
下面的code實(shí)現(xiàn)的是刪除文件夾installation內(nèi)的所有文件(里面有文件和文件夾),
注意:是刪除文件夾installation里面所有的文件,并不刪除installation這個文件夾。
代碼如下:
code運(yùn)行環(huán)境: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模塊相關(guān)的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個最常見的與目錄有關(guān)的API進(jìn)行簡單的學(xué)習(xí)。
1. os.listdir(dir)
這個函數(shù)返回指定目錄下的所有文件和目錄名組成的一個列表。
就是說返回一個列表,這個列表里的元素是由指定目錄下的所有文件和目錄組成的。
>>> 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)
刪除指定文件。無論文件是否是空,都可以刪除。
注意:這個函數(shù)只能刪除文件,不能刪除目錄,否則會報錯。
>>> import os >>> os.removedirs(r'c:\temp\david\book\python.txt')
5. shutil.rmtree(path)
如果目錄中有文件和目錄,也就是說一個目錄中不管有多少子目錄,這些子目錄里面不管有多少目錄和文件。
我想刪除這個上層目錄(注意:是刪除這個目錄及其這個目錄中的所有文件和目錄)。
如何做呢?
就需要使用shutil模塊中的rmtree()函數(shù)。
>>> import shutil >>> shutil.rmtree(r'C:\no1')
以上這篇Python對文件和目錄進(jìn)行操作的方法(file對象/os/os.path/shutil 模塊)就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持腳本之家。
相關(guān)文章
Python之sklearn數(shù)據(jù)預(yù)處理中fit(),transform()與fit_transform()的區(qū)別
這篇文章主要介紹了Python之sklearn數(shù)據(jù)預(yù)處理中fit(),transform()與fit_transform()的區(qū)別及說明,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2023-02-02
Python pandas如何獲取數(shù)據(jù)的行數(shù)和列數(shù)
這篇文章主要介紹了Python pandas如何獲取數(shù)據(jù)的行數(shù)和列數(shù)問題,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教2024-02-02
python實(shí)現(xiàn)字符串加密 生成唯一固定長度字符串
這篇文章主要為大家詳細(xì)介紹了python實(shí)現(xiàn)字符串加密,生成唯一固定長度字符串,具有一定的參考價值,感興趣的小伙伴們可以參考一下2019-03-03
pytorch 圖像預(yù)處理之減去均值,除以方差的實(shí)例
今天小編就為大家分享一篇pytorch 圖像預(yù)處理之減去均值,除以方差的實(shí)例,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2020-01-01
對Python 3.2 迭代器的next函數(shù)實(shí)例講解
今天小編就為大家分享一篇對Python 3.2 迭代器的next函數(shù)實(shí)例講解,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2018-10-10

