Python OS文件/目录 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!!