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 函数参考