Perl sysseek 函数



描述

此函数根据 POSITION 和 WHENCE 的值来设置 FILEHANDLE 中的位置。

这相当于 C 函数 lseek( ),因此您应避免在 FILEHANDLE 的缓冲形式中使用它。这包括 FILEHANDLE 符号以及 print、write、seek 和 tell。与 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

返回值

此函数在失败时返回未定义,将 0 的位置返回为字符串 0 但为真和整数,成功时返回新位置(以字节为单位)。

perl_function_references.htm
广告