Perl seekdir 函数



描述

此函数将 DIRHANDLE 中的当前位置设置为 POS。POS 的值必须是 telldir 之前返回的值。

seekdir() 函数类似于 Unix seekdir() 系统调用。

语法

以下是对此函数的简单语法 −

seekdir DIRHANDLE, POS

返回值

该函数在失败时返回 0,成功时返回 1。

示例

以下示例代码展示了它的基本用法,在 /tmp 中创建一个目录 testdir −

#!/usr/bin/perl -w

opendir(DIR, "/tmp");

print("Position without read : ", telldir(DIR), "\n");

$dir = readdir(DIR);
print("Position after one read : ", telldir(DIR), "\n");
print "$dir\n";
seekdir(DIR,0);

$dir = readdir(DIR);
print "$dir\n";
print("Position after second read : " , telldir(DIR), "\n");

closedir(DIR);

执行上述代码后,会产生以下结果 −

Position without read : 0
Position after one read : 4
.
.
Position after second read : 4
perl_function_references.htm
广告