描述
該函數根據 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 和整數,成功時返回新位置(以字節為單位)。
相關用法
- Perl sysread用法及代碼示例
- Perl system用法及代碼示例
- Perl syscall用法及代碼示例
- Perl sysopen用法及代碼示例
- Perl symlink用法及代碼示例
- Perl sin()用法及代碼示例
- Perl split用法及代碼示例
- Perl shmctl用法及代碼示例
- Perl splice用法及代碼示例
- Perl sqrt()用法及代碼示例
- Perl setpriority用法及代碼示例
- Perl semget用法及代碼示例
- Perl send用法及代碼示例
- Perl sort()用法及代碼示例
- Perl setpwent用法及代碼示例
- Perl sethostent用法及代碼示例
注:本文由純淨天空篩選整理自 Perl sysseek Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。