编程语言
首页 > 编程语言> > Python os.lseek() 方法

Python os.lseek() 方法

作者:互联网

概述

os.lseek() 方法用于设置文件描述符 fd 当前位置为 pos, how 方式修改。高佣联盟 www.cgewang.com

在Unix,Windows中有效。

语法

lseek()方法语法格式如下:

os.lseek(fd, pos, how)

参数

返回值

该方法没有返回值。

实例

以下实例演示了 lseek() 方法的使用:

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

import os, sys

# 打开文件
fd = os.open( "foo.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 "关闭文件成功!!"

执行以上程序输出结果为:

关闭文件成功!!

标签:lseek,文件,Python,pos,how,fd,os
来源: https://www.cnblogs.com/yc10086/p/13359175.html