1、打開文件windows
# open(file, mode='r', buffering=-1, encoding_=None, errors=None, newline=None, closefd=True, opener=None) # 使用open函數來打開一個文件 # 參數: # file 要打開的文件的名字(路徑) # 返回值: # 返回一個對象,這個對象就表明了當前打開的文件 # 建立一個變量,來保存文件的名字 # 若是目標文件和當前文件在同一級目錄下,則直接使用文件名便可 file_name = 'demo.txt' # 在windows系統使用路徑時,可使用/來代替 \ # 或者可使用 \\ 來代替 \ # 或者也可使用原始字符串 file_name = 'hello\\demo.txt' file_name = r'hello\demo.txt' # 表示路徑,可使用..來返回一級目錄 file_name = '../hello/demo.txt' # 若是目標文件距離當前文件比較遠,此時可使用絕對路徑 # 絕對路徑應該從磁盤的根目錄開始書寫 file_name = r'C:\Users\lilichao\Desktop\hello.txt' # file_obj = open(file_name) # 打開 file_name 對應的文件 # print(file_obj)
關閉文件函數
# 打開文件 file_name = 'demo.txt' # 調用open()來打開文件 # file_obj = open(file_name) # # 當咱們獲取了文件對象之後,全部的對文件的操做都應該經過對象來進行 # # 讀取文件中的內容 # # read()方法,用來讀取文件中的內容,它會將內容所有保存爲一個字符串返回 # content = file_obj.read() # print(content) # # 關閉文件 # # 調用close()方法來關閉文件 # file_obj.close() # with ... as 語句 # with open(file_name) as file_obj : # # 在with語句中能夠直接使用file_obj來作文件操做 # # 此時這個文件只能在with中使用,一旦with結束則文件會自動close() # print(file_obj.read()) file_name = 'hello' try: with open(file_name) as file_obj : print(file_obj.read()) except FileNotFoundError: print(f'{file_name} 文件不存在~~')
2、讀取、寫入文件編碼
file_name = 'demo2.txt' try: # 調用open()來打開一個文件,能夠將文件分紅兩種類型 # 一種,是純文本文件(使用utf-8等編碼編寫的文本文件) # 一種,是二進制文件(圖片、mp三、ppt等這些文件) # open()打開文件時,默認是以文本文件的形式打開的,可是open()默認的編碼爲None # 因此處理文本文件時,必需要指定文件的編碼 with open(file_name,encoding='utf-8') as file_obj: # 經過 read() 來讀取文件中的內容 # 若是直接調用read()它會將文本文件的全部內容所有都讀取出來 # 若是要讀取的文件較大的話,會一次性將文件的內容加載到內存中,容易致使內存泄漏 # 因此對於較大的文件,不要直接調用read() # help(file_obj.read) # read()能夠接收一個size做爲參數,該參數用來指定要讀取的字符的數量 # 默認值爲-1,它會讀取文件中的全部字符 # 能夠爲size指定一個值,這樣read()會讀取指定數量的字符, # 每一次讀取都是從上次讀取到位置開始讀取的 # 若是字符的數量小於size,則會讀取剩餘全部的 # 若是已經讀取到了文件的最後了,則會返回''空串 # content = file_obj.read(-1) content = file_obj.read(6) content = file_obj.read(6) content = file_obj.read(6) content = file_obj.read(6) # print(content) # print(len(content)) except FileNotFoundError : print(f'{file_name} 這個文件不存在!') # 讀取大文件的方式 file_name = 'demo.txt' try: with open(file_name,encoding='utf-8') as file_obj: # 定義一個變量,來保存文件的內容 file_content = '' # 定義一個變量,來指定每次讀取的大小 chunk = 100 # 建立一個循環來讀取文件內容 while True: # 讀取chunk大小的內容 content = file_obj.read(chunk) # 檢查是否讀取到了內容 if not content: # 內容讀取完畢,退出循環 break # 輸出內容 # print(content,end='') file_content += content except FileNotFoundError : print(f'{file_name} 這個文件不存在!') print(file_content)
readlinespa
import pprint import os file_name = 'demo.txt' with open(file_name , encoding='utf-8') as file_obj: # readline() # 該方法能夠用來讀取一行內容 # print(file_obj.readline(),end='') # print(file_obj.readline()) # print(file_obj.readline()) # readlines() # 該方法用於一行一行的讀取內容,它會一次性將讀取到的內容封裝到一個列表中返回 # r = file_obj.readlines() # pprint.pprint(r[0]) # pprint.pprint(r[1]) # pprint.pprint(r[2]) for t in file_obj: print(t)
寫入code
file_name = 'demo5.txt' # 使用open()打開文件時必需要指定打開文件所要作的操做(讀、寫、追加) # 若是不指定操做類型,則默認是 讀取文件 , 而讀取文件時是不能向文件中寫入的 # r 表示只讀的 # w 表示是可寫的,使用w來寫入文件時,若是文件不存在會建立文件,若是文件存在則會截斷文件 # 截斷文件指刪除原來文件中的全部內容 # a 表示追加內容,若是文件不存在會建立文件,若是文件存在則會向文件中追加內容 # x 用來新建文件,若是文件不存在則建立,存在則報錯 # + 爲操做符增長功能 # r+ 便可讀又可寫,文件不存在會報錯 # w+ # a+ # with open(file_name , 'w' , encoding='utf-8') as file_obj: # with open(file_name , 'r+' , encoding='utf-8') as file_obj: with open(file_name , 'x' , encoding='utf-8') as file_obj: # write()來向文件中寫入內容, # 若是操做的是一個文本文件的話,則write()須要傳遞一個字符串做爲參數 # 該方法會能夠分屢次向文件中寫入內容 # 寫入完成之後,該方法會返回寫入的字符的個數 file_obj.write('aaa\n') file_obj.write('bbb\n') file_obj.write('ccc\n') r = file_obj.write(str(123)+'123123\n') r = file_obj.write('今每天氣真不錯') print(r)
二進制對象
file_name = 'c:/Users/lilichao/Desktop/告白氣球.flac' # 讀取模式 # t 讀取文本文件(默認值) # b 讀取二進制文件(除了txt文件以外的文件) with open(file_name , 'rb') as file_obj: # 讀取文本文件時,size是以字符爲單位的 # 讀取二進制文件時,size是以字節爲單位 # print(file_obj.read(100)) # 將讀取到的內容寫出來 # 定義一個新的文件 new_name = 'aa.flac' with open(new_name , 'wb') as new_obj: # 定義每次讀取的大小 chunk = 1024 * 100 while True : # 從已有的對象中讀取數據 content = file_obj.read(chunk) # 內容讀取完畢,終止循環 if not content : break # 將讀取到的數據寫入到新對象中 new_obj.write(content)
seek()設置讀取文件的位置blog
# with open('demo.txt','rb') as file_obj: # # print(file_obj.read(100)) # # print(file_obj.read(30)) # # seek() 能夠修改當前讀取的位置 # file_obj.seek(55) # file_obj.seek(80,0) # file_obj.seek(70,1) # file_obj.seek(-10,2) # # seek()須要兩個參數 # # 第一個 是要切換到的位置 # # 第二個 計算位置方式 # # 可選值: # # 0 從頭計算,默認值 # # 1 從當前位置計算 # # 2 從最後位置開始計算 # print(file_obj.read()) # # tell() 方法用來查看當前讀取的位置 # print('當前讀取到了 -->',file_obj.tell()) with open('demo2.txt','rt' , encoding='utf-8') as file_obj: # print(file_obj.read(100)) # print(file_obj.read(30)) # seek() 能夠修改當前讀取的位置 file_obj.seek(9) # seek()須要兩個參數 # 第一個 是要切換到的位置 # 第二個 計算位置方式 # 可選值: # 0 從頭計算,默認值 # 1 從當前位置計算 # 2 從最後位置開始計算 print(file_obj.read()) # tell() 方法用來查看當前讀取的位置 print('當前讀取到了 -->',file_obj.tell())
其餘操做圖片
import os from pprint import pprint # os.listdir() 獲取指定目錄的目錄結構 # 須要一個路徑做爲參數,會獲取到該路徑下的目錄結構,默認路徑爲 . 當前目錄 # 該方法會返回一個列表,目錄中的每個文件(夾)的名字都是列表中的一個元素 r = os.listdir() # os.getcwd() 獲取當前所在的目錄 r = os.getcwd() # os.chdir() 切換當前所在的目錄 做用至關於 cd # os.chdir('c:/') # r = os.getcwd() # 建立目錄 # os.mkdir("aaa") # 在當前目錄下建立一個名字爲 aaa 的目錄 # 刪除目錄 # os.rmdir('abc') # open('aa.txt','w') # 刪除文件 # os.remove('aa.txt') # os.rename('舊名字','新名字') 能夠對一個文件進行重命名,也能夠用來移動一個文件 # os.rename('aa.txt','bb.txt') os.rename('bb.txt','c:/users/lilichao/desktop/bb.txt') pprint(r)