Python os.lseek() 方法

Python File(文件) 方法 Python OS 文件/目錄方法


概述

os.lseek() 方法用于設(shè)置文件描述符 fd 當(dāng)前位置為 pos, how 方式修改。

在Unix,Windows中有效。

語法

lseek()方法語法格式如下:

os.lseek(fd, pos, how)

參數(shù)

  • fd -- 文件描述符。

  • pos -- 這是相對(duì)于給定的參數(shù) how 在文件中的位置。。

  • how -- 文件內(nèi)參考位置。SEEK_SET 或者 0 設(shè)置從文件開始的計(jì)算的pos; SEEK_CUR或者 1 則從當(dāng)前位置計(jì)算; os.SEEK_END或者2則從文件尾部開始。

返回值

該方法沒有返回值。

實(shí)例

以下實(shí)例演示了 lseek() 方法的使用:

#!/usr/bin/python
# -*- coding: UTF-8 -*-

import os, sys

# 打開文件
fd = os.open( "foo.txt", os.O_RDWR|os.O_CREAT )

# 寫入字符串
os.write(fd, "This is test")

# 所有 fsync() 方法
os.fsync(fd)

# 從開始位置讀取字符串
os.lseek(fd, 0, 0)
str = os.read(fd, 100)
print "Read String is : ", str

# 關(guān)閉文件
os.close( fd )

print "關(guān)閉文件成功!!"

執(zhí)行以上程序輸出結(jié)果為:

關(guān)閉文件成功!!

Python File(文件) 方法 Python OS 文件/目錄方法