SeekMode
SeekMode
枚举指定了在文件中进行 seek 操作的起始位置。
成员
成员 | 值 | 描述 |
---|---|---|
开始 | 0 | 从文件开始位置查找。 |
当前 | 1 | 从文件当前位置查找。 |
结束 | 2 | 从文件结束位置查找。 |
示例
import { open, SeekMode } from 'k6/experimental/fs';
const file = await open('bonjour.txt');
export default async function () {
// Seek 6 bytes from the start of the file
await file.seek(6, SeekMode.Start);
// Seek 2 more bytes from the current position
await file.seek(2, SeekMode.Current);
// Seek backwards 2 bytes from the end of the file
await file.seek(-2, SeekMode.End);
}