os.lseek() 方法



描述

lseek() 方法将文件描述符 fd 的当前位置设置为给定的位置 pos,并由 how 修改。

语法

以下是 lseek() 方法的语法:

os.lseek(fd, pos, how)

参数

  • pos − 这是相对于给定参数 how 的文件中的位置。您可以使用 os.SEEK_SET 或 0 来设置相对于文件开头的相对位置,使用 os.SEEK_CUR 或 1 来设置相对于当前位置的相对位置;使用 os.SEEK_END 或 2 来设置相对于文件结尾的相对位置。

  • how − 这是文件中的参考点。os.SEEK_SET 或 0 表示文件开头,os.SEEK_CUR 或 1 表示当前位置,os.SEEK_END 或 2 表示文件结尾。

已定义的pos 常量

  • os.SEEK_SET - 0

  • os.SEEK_CUR - 1

  • os.SEEK_END - 2

返回值

此方法不返回值。

示例

以下示例显示了 lseek() 方法的使用。

import os, sys

# Open a file
fd = os.open( "foo.txt", os.O_RDWR|os.O_CREAT )

# Write one string
line="This is test"
b=line.encode()
os.write(fd, b)

# Now you can use fsync() method.
# Infact here you would not be able to see its effect.
os.fsync(fd)

# Now read this file from the beginning
os.lseek(fd, 0, 0)
line = os.read(fd, 100)
print ("Read String is : ", line.decode())

# Close opened file
os.close( fd )
print ("Closed the file successfully!!")

当我们运行以上程序时,它会产生以下结果:

Read String is : This is test
Closed the file successfully!!
python_os_file_directory_methods.htm
广告