python檔案操作執行個體

來源:互聯網
上載者:User
python檔案操作執行個體來源:歲月聯盟 編輯:exp
時間:2012-09-14

[python]
# -*- coding: utf-8 -*- 
 
import os 
import shutil 
 
# 一. 路徑操作:判斷、擷取和刪除 
 
#1. 得到當前工作目錄,即當前Python指令碼工作的目錄路徑: os.getcwd() 
#print: currentpath:  f:/LearnPython 
currentpath = os.getcwd() 
print "currentpath: ",currentpath 
#2. 返回指定目錄下的所有檔案和目錄名:os.listdir() 
#print:os.listdir():  ['test.txt', 'testRW.py', 'test1.txt', 'cmd.py', 'rwfile.py', 'downloadfile.py', 'date.py', 'time.py', 'datetime.py', 'file.py'] 
print "os.listdir(): ",os.listdir('f:/LearnPython') 
 
path = "F:/mmmmmmmmm/debug_taobao_200003@taobao_android1.6_3.2.1.apk" 
#3. 判斷給出的路徑是否真地存:os.path.exists() 
if os.path.exists(path): 
    #刪除一個檔案:os.remove() 
    os.remove(path) 
else: 
    print path,"not exist" 
 
#4. 刪除多個目錄:os.removedirs(“c:/python”) 
#它只能刪除空目錄,如果目錄裡面有內容將不會被刪除 
if os.path.exists("d:/woqu"): 
    os.removedirs("d:/woqu") 
else: 
    os.mkdir("d:/woqu") 
    os.removedirs("d:/woqu") 
 
#5. 判斷給出的路徑是否是一個檔案:os.path.isfile() 
#print: True 
print os.path.isfile("D:/hello/json.txt") 
#6. 判斷給出的路徑是否是一個目錄:os.path.isdir() 
#print: True 
print os.path.isdir("D:/hello") 
#7. 判斷是否是絕對路徑:os.path.isabs() 
#print: True 
print os.path.isabs("D:/hello") 
#  判斷是否是連結 
print os.path.islink('http://www.baidu.com') 
#8. 返回一個路徑的目錄名和檔案名稱:os.path.split()      
#eg os.path.split('/home/swaroop/byte/code/poem.txt') 結果:('/home/swaroop/byte/code', 'poem.txt')  
#print: ('D://hello', 'json.txt') 
print os.path.split("D:/hello/json.txt") 
#9. 分離副檔名:os.path.splitext() 
#print:('D://hello//json', '.txt') 
print os.path.splitext("D:/hello/json.txt") 
#10. 擷取路徑名:os.path.dirname() 
#print: 'D://hello' 
print os.path.dirname("D:/hello/json.txt") 
#11. 擷取檔案名稱:os.path.basename() 
#print: 'json.txt' 
print os.path.basename("D:/hello/json.txt") 
 
 
#13. 指示你正在使用的平台:os.name       對於Windows,它是'nt',而對於Linux/Unix使用者,它是'posix' 
print "os.name: ",os.name 
 
#14. linex 下的命令 
if os.name == 'posix': 
    #讀取和設定環境變數:os.getenv() 與os.putenv() 
    home_path = os.environ['HOME'] 
    home_path = os.getenv('HOME')  #讀取環境變數  
elif os.name == 'nt': 
    home_path = 'd:'  
    print 'home_path: ',home_path 
 
#15. 給出當前平台使用的行終止符:os.linesep    Windows使用'/r/n',Linux使用'/n'而Mac使用'/r' 
print(os.linesep) 
 
#16. 應為windows和linux的路徑有點點不一樣,windows是用 // 來分割的,linux是用 / 來分隔, 
#而用os.sep 會自動根據系統選擇用哪個分隔字元。 
print(os.sep) 
 
#17. 重新命名:os.rename(old, new) 
#先進入目錄 
os.chdir("d://hello") 
print os.getcwd()  
#18. 再重新命名 
os.rename("1.txt", "11.txt") 
#19. 建立多級目錄:os.makedirs(“c:/python/test”) 
os.makedirs('d:/h/e/l/l/o') 
#20. 建立單個目錄:os.mkdir(“test”) 
os.mkdir('d:/f') 
#21. 擷取檔案屬性:os.stat(file) 
#print: nt.stat_result(st_mode=33206, st_ino=0L, st_dev=0, st_nlink=0, st_uid=0, st_gid=0, st_size=497L, st_atime=1346688000L, st_mtime=1346748054L, st_ctime=1346748052L) 
print os.stat('d:/hello/json.txt') 
#22. 修改檔案許可權與時間戳記:os.chmod(path,mode) 
#這裡有介紹:http://blog.csdn.net/wirelessqa/article/details/7974477 
#23. 終止當前進程:os.exit() 
#24. 擷取檔案大小:os.path.getsize(filename) 
print os.path.getsize('d:/hello/json.txt') 

檔案操作:
os.mknod("test.txt")        建立空檔案
fp = open("test.txt",w)     直接開啟一個檔案,如果檔案不存在則建立檔案

關於open 模式:

w     以寫方式開啟,
a     以追加模式開啟 (從 EOF 開始, 必要時建立新檔案)
r+     以讀寫入模式開啟
w+     以讀寫入模式開啟 (參見 w )
a+     以讀寫入模式開啟 (參見 a )
rb     以二進位讀模式開啟
wb     以二進位寫入模式開啟 (參見 w )
ab     以二進位追加模式開啟 (參見 a )
rb+    以二進位讀寫入模式開啟 (參見 r+ )
wb+    以二進位讀寫入模式開啟 (參見 w+ )
ab+    以二進位讀寫入模式開啟 (參見 a+ )

 

fp.read([size])                     #size為讀取的長度,以byte為單位

fp.readline([size])                 #讀一行,如果定義了size,有可能返回的只是一行的一部分

fp.readlines([size])                #把檔案每一行作為一個list的一個成員,並返回這個list。其實它的內部是通過迴圈調用readline()來實現的。如果提供size參數,size是表示讀取內容的總長,也就是說可能唯讀到檔案的一部分。

fp.write(str)                      #把str寫到檔案中,write()並不會在str後加上一個分行符號

fp.writelines(seq)            #把seq的內容全部寫到檔案中(多行一次性寫入)。這個函數也只是忠實地寫入,不會在每行後面加上任何東西。

fp.close()                        #關閉檔案。python會在一個檔案不用後自動關閉檔案,不過這一功能沒有保證,最好還是養成自己關閉的習慣。  如果一個檔案在關閉後還對其進行操作會產生ValueError

fp.flush()                                      #把緩衝區的內容寫入硬碟

fp.fileno()                                      #返回一個長整型的”檔案標籤“

fp.isatty()                                      #檔案是否是一個終端裝置檔案(unix系統中的)

fp.tell()                                         #返迴文件操作標記的當前位置,以檔案的開頭為原點

fp.next()                                       #返回下一行,並將檔案操作標記位移到下一行。把一個file用於for … in file這樣的語句時,就是調用next()函數來實現遍曆的。

fp.seek(offset[,whence])              #將檔案打操作標記移到offset的位置。這個offset一般是相對於檔案的開頭來計算的,一般為正數。但如果提供了whence參數就不一定 了,whence可以為0表示從頭開始計算,1表示以當前位置為原點計算。2表示以檔案末尾為原點進行計算。需要注意,如果檔案以a或a+的模式開啟,每 次進行寫操作時,檔案操作標記會自動返回到檔案末尾。

fp.truncate([size])                       #把檔案裁成規定的大小,預設的是裁到當前檔案操作標記的位置。如果size比檔案的大小還要大,依據系統的不同可能是不改變檔案,也可能是用0把檔案補到相應的大小,也可能是以一些隨機的內容加上去。

 

目錄操作:
os.mkdir("file")                   建立目錄
複製檔案:
shutil.copyfile("oldfile","newfile")       oldfile和newfile都只能是檔案
shutil.copy("oldfile","newfile")            oldfile只能是檔案夾,newfile可以是檔案,也可以是目標目錄
複製檔案夾:
shutil.copytree("olddir","newdir")        olddir和newdir都只能是目錄,且newdir必須不存在
重新命名檔案(目錄)
os.rename("oldname","newname")       檔案或目錄都是使用這條命令
移動檔案(目錄)
shutil.move("oldpos","newpos")  
刪除檔案
os.remove("file")
刪除目錄
os.rmdir("dir")只能刪除空目錄
shutil.rmtree("dir")    空目錄、有內容的目錄都可以刪
轉換目錄
os.chdir("path")   換路徑

執行個體:將檔案夾下所有圖片名稱加上'_once-ler'

[python] 
# -*- coding:utf-8 -*- 
import re 
import os 
import time 
#str.split(string)分割字串 
#'串連符'.join(list) 將列表組成字串 
 
def file_changename(filepath):    
    global picnum       
    file_path = os.path.split(filepath) #分割出目錄與檔案 
    lists = file_path[1].split('.') #分割出檔案與副檔名 
    file_ext = lists[-1] #取出尾碼名(列表切片操作) 
    img_ext = ['bmp','jpeg','gif','psd','png','jpg'] 
    if file_ext in img_ext: 
        os.rename(filepath,file_path[0]+'/'+lists[0]+'_once-ler.'+file_ext) 
        picnum+=1 
 
 
def change_name(path):   
    if not os.path.isdir(path) and not os.path.isfile(path): 
        return False 
    elif os.path.isfile(path): 
        file_changename(path) 
    elif os.path.isdir(path): 
        for x in os.listdir(path): 
            print 'os.path.join(path,x): ',os.path.join(path,x) 
            file_changename(os.path.join(path,x)) 
            #os.path.join()在路徑處理上很有用 
if __name__ == '__main__': 
    img_dir = 'D://hello//capture' 
    print img_dir 
    img_dir = img_dir.replace('//','/') 
    print img_dir 
    start = time.time() 
    print start 
    picnum = 0 
    change_name(img_dir) 
    spenttime = time.time() - start 
    print('程式運行耗時:%0.2f'%(spenttime)) 
    print('總共處理了 %s 張圖片'%(picnum)) 

下面這個檔案運行有錯誤,摘自:http://rsjy.org/2023.html
[python] 
#!/usr/bin/python 
# -*- coding:utf-8 -*- 
import os 
# 定義幾個函數 
def del_file(wpath): 
    os.remove(wpath)  # 刪除檔案 
def del_dir(wpath): 
    os.removedirs(wpath)  # 刪除空檔案夾 
def gen_dir(wpath): 
    if os.path.exists(wpath): 
        pass 
    else: 
        os.mkdir(wpath)  # 建立檔案夾 
def gen_file(wpath): 
    if os.path.exists(wpath): 
        pass 
    else: 
        os.mknod(wpath)  # 建立檔案 
 
print(os.sep)  
print(os.linesep) # 字串給出當前平台使用的行終止符 
 
# print(os.environ) 
if os.name == 'posix': 
    home_path = os.environ['HOME'] 
    home_path = os.getenv('HOME')  #讀取環境變數   
elif os.name == 'nt': 
    home_path = 'd:'  # win 下未測試 
 
# 定義進行測試的檔案夾與檔案的名稱 
tep_dir = 'xx_tep' 
tep_dir_a = 'tep_dir_a' 
tep_dir_b = 'tep_dir_b' 
tep_file_a = 'tep_file_a.txt' 
tep_file_b = 'tep_file_b.py' 
tep_file_c = 'tep_file_c.c' 
# 合成檔案夾與檔案的全路徑 
path_tep = os.path.join(home_path, tep_dir) 
path_dir_a = os.path.join(path_tep, tep_dir_a) 
path_dir_b = os.path.join(path_tep, tep_dir_b) 
path_file_a = os.path.join(path_dir_a, tep_file_a) 
path_file_b = os.path.join(path_dir_a, tep_file_b) 
path_file_c = os.path.join(path_dir_b, tep_file_c) 
# 在系統內產生相應的檔案夾與檔案 
gen_dir(path_tep) 
gen_dir(path_dir_a) 
gen_dir(path_dir_b) 
gen_file(path_file_a)     
gen_file(path_file_b) 
gen_file(path_file_c) 
 
cwd = os.getcwd() # 得到當前工作目錄,即當前Python指令碼工作的目錄路徑。 
wlist = os.listdir(cwd) 
for wli in wlist: 
    print(wli) 
os.chdir(path_tep) # 切換路徑 
cwd = os.getcwd() # 得到當前工作目錄,即當前Python指令碼工作的目錄路徑。 
wlist = os.listdir(cwd) 
for wli in wlist: 
    print(wli) 
 
if os.path.isdir(path_dir_a): # 判斷是否檔案夾 
    tep_size = os.path.getsize(path_dir_a)   
    print(tep_size) 
 
if os.path.isfile(path_file_a): 
    tep_size = os.path.getsize(path_file_a) # 獲得檔案大小 
    print(tep_size) 
 
for wroot, wdirs, wfiles in os.walk(path_tep): 
    for wfile in wfiles: 
        file_path = os.path.abspath(wfile) # 獲得絕對路徑 
        print(file_path) 
 
# 返迴文件名 
filename = os.path.basename(path_file_a) 
print(filename) 
 
# 返迴文件路徑 
dirname = os.path.dirname(path_file_a) 
print(dirname) 
 
# 分割檔案名稱與目錄 
# 事實上,如果你完全使用目錄,它也會將最後一個目錄作為檔案名稱而分離, 
# 同時它不會判斷檔案或目錄是否存在 
(filepath, filename) = os.path.split(path_file_a) 
print(filepath, filename) 
(fname, fext) = os.path.splitext(filename) # 分離檔案名稱與副檔名 
print(fname, fext) 
# 清理檔案與檔案夾 
del_file(path_file_a) 
del_file(path_file_b) 
del_dir(path_dir_a) 
del_file(path_file_c) 
del_dir(path_dir_b)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.