目录

telldir

描述 (Description)

此函数返回DIRHANDLE引用的目录列表中读指针的当前位置。 seekdir()函数可以使用此返回值。

语法 (Syntax)

以下是此函数的简单语法 -

telldir DIRHANDLE

返回值 (Return Value)

此函数返回目录中的当前位置。

例子 (Example)

以下是显示其基本用法的示例代码,我们在/ tmp目录中只有两个文件 -

#!/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 : 1
.ICE-unix
.ICE-unix
Position after second read : 1
↑回到顶部↑
WIKI教程 @2018