當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Perl telldir用法及代碼示例



描述

此函數返回讀取指針在 DIRHANDLE 引用的目錄列表中的當前位置。這個返回值可以被 seekdir() 函數使用。

用法

以下是此函數的簡單語法 -

telldir DIRHANDLE

返回值

此函數返回目錄中的當前位置。

示例

以下是顯示其基本用法的示例代碼,我們在 /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

相關用法


注:本文由純淨天空篩選整理自 Perl telldir Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。