Python File truncate() 方法
python file truncate() 方法
truncate() 方法用于截斷文件,如果指定了可選參數 size,則表示截斷文件為 size 個字符。 如果沒有指定 size,則從當前位置起截斷;截斷之后 size 后面的所有字符被刪除。
語法
truncate() 方法語法如下:
fileobject.truncate( [ size ])
參數
-
size -- 可選,如果存在則文件截斷為 size 字節。
返回值
該方法沒有返回值。
實例
以下實例演示了 truncate() 方法的使用:
文件 codebaoku.txt 的內容如下:
1:www.090948.com 2:www.090948.com 3:www.090948.com 4:www.090948.com 5:www.090948.com
循環讀取文件的內容:
#!/usr/bin/python # -*- coding: utf-8 -*- # 打開文件 fo = open("codebaoku.txt", "r+") print "文件名為: ", fo.name line = fo.readline() print "讀取第一行: %s" % (line) # 截斷剩下的字符串 fo.truncate() # 嘗試再次讀取數據 line = fo.readline() print "讀取數據: %s" % (line) # 關閉文件 fo.close()
以上實例輸出結果為:
文件名為: codebaoku.txt 讀取第一行: 1:www.090948.com 讀取數據:
以下實例截取 codebaoku.txt 文件的10個字節:
#!/usr/bin/python # -*- coding: utf-8 -*- # 打開文件 fo = open("codebaoku.txt", "r+") print "文件名為: ", fo.name # 截取10個字節 fo.truncate(10) str = fo.read() print "讀取數據: %s" % (str) # 關閉文件 fo.close()
以上實例輸出結果為:
文件名為: codebaoku.txt 讀取數據: 1:www.code