Python os.lseek() 方法

返回上一级

os.lseek() 方法用于设置文件描述符 fd 当前位置为 pos, how 方式修改

导入模块

import os

语法

os.lseek(fd, pos, how)

参数

参数 说明
fd 文件描述符
pos 这是相对于给定的参数 how 在文件中的位置
how 文件内参考位置。SEEK_SET 或者 0 设置从文件开始的计算的pos; SEEK_CUR或者 1 则从当前位置计算; os.SEEK_END或者2则从文件尾部开始

返回值

范例

下面的代码演示了 os.lseek() 方法的简单使用

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

import os, sys

# 打开文件
fd = os.open( "demo.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

# 关闭文件
os.close( fd )

print "关闭文件成功!!"

运行以上 Python 代码,输出结果如下

关闭文件成功!!

返回上一级

Python2 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.