首页 > Python资料 博客日记

Python os.lseek()方法

2023-08-08 16:45:12Python资料围观210

Python资料网推荐Python os.lseek()方法这篇文章给大家,欢迎收藏Python资料网享受知识的乐趣

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

语法

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

os.lseek(fd, pos, how)

参数

  • fd - 这是文件描述符,需要处理。
  • pos - 这是相对于给定参数文件的位置。os.SEEK_SET0设置相对于文件开头的位置,os.SEEK_CUR1用来设置它相对于当前位置; os.SEEK_END2用来设置它相对于文件的结尾。
  • how - 这是文件中的参考点。os.SEEK_SET0表示文件的开头,os.SEEK_CUR1表示当前位置,os.SEEK_END2表示文件的结尾。

定义的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!!

版权声明:本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:jacktools123@163.com进行投诉反馈,一经查实,立即删除!

标签:

相关文章

本站推荐