无涯教程-Perl - seekdir函数

93 阅读1分钟

描述

此功能将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

参考链接

www.learnfk.com/perl/perl-s…