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