- Perl 基础知识
- Perl - 主页
- Perl - 简介
- Perl - 环境
- Perl - 语法概述
- Perl - 数据类型
- Perl - 变量
- Perl - 标量
- Perl - 数组
- Perl - 哈希
- Perl - IF...ELSE
- Perl - 循环
- Perl - 运算符
- Perl - 日期和时间
- Perl - 子例程
- Perl - 参考资料
- Perl - 格式
- Perl - 文件 I/O
- Perl - 目录
- Perl - 错误处理
- Perl - 特殊变量
- Perl - 编码标准
- Perl - 正则表达式
- Perl - 发送电子邮件
- Perl 高级
- Perl - 套接字编程
- Perl - 面向对象
- Perl - 数据库访问
- Perl - CGI 编程
- Perl - 包和模块
- Perl - 流程管理
- Perl - 嵌入式文档
- Perl - 函数参考
- Perl 有用资源
- Perl - 问题与解答
- Perl - 快速指南
- Perl - 有用的资源
- Perl - 讨论
Perl sysseek 函数
描述
该函数根据 POSITION 和 WHENCE 的值设置 FILEHANDLE 中的位置。
这相当于 C 函数 lseek( ),因此应避免将其与缓冲形式的 FILEHANDLE 一起使用。这包括“FILEHANDLE”符号以及打印、写入、查找和讲述。将其与 sysread 或 syswrite 一起使用是可以的,因为它们也忽略缓冲。
文件中的位置由 POSITION 指定,使用 WHENCE 的值作为参考点,如下表所示。
EEK_SET -> 0 Sets the new position absolutely to POSITION bytes within the file SEEK_CUR -> 1 Sets the new position to the current position plus POSITION bytes within the file SEEK_END -> 2 Sets the new position to POSITION bytes, relative to the end of the file
句法
以下是该函数的简单语法 -
sysseek FILEHANDLE,POSITION,WHENCE
返回值
该函数在失败时返回 undef,位置 0 作为字符串 0 返回,但 true 和 Integer,在成功时返回新位置(以字节为单位)。
perl_function_references.htm