当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python 3 os.lseek()用法及代码示例



描述

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

用法

以下是语法lseek()方法 -

os.lseek(fd, pos, how)

参数

  • fd− 这是需要处理的文件描述符。

  • pos- 这是相对于给定参数如何在文件中的位置。你给 os.SEEK_SET 或 0 来设置相对于文件开头的位置, os.SEEK_CUR 或 1 来设置它相对于当前位置; os.SEEK_END 或 2 以相对于文件末尾进行设置。

  • how− 这是文件的参考点 with-in。 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() 方法的用法。

#!/usr/bin/python3
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 3 - os.lseek() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。