rewinddir DIRHANDLE |
复位开始由DIRHANDLE指定目录内的当前位置。
0 - 失败
1 - 成功
在/tmp目录,并尝试下面的例子:
#!/usr/bin/perl -w #by www.gitbook.net # Open the current directory opendir(DIR, "."); # Print all of the directory entries. print("1st Time: \n"); map( print("$_ \n") , readdir(DIR)); print("\n"); # Print message verifying that there are # no more directory entries to read. print("The last file has already been read!\n\n") unless readdir(DIR); # Go back to the beginning. rewinddir(DIR); # Print all of the directory entries again. print("2nd Time: \n"); map( print("$_ \n") , readdir(DIR)); print("\n"); closedir(DIR);
这将产生以下结果:(检查/tmp目录)
1st Time:
.
..
testdir
The last file has already been read!
2nd Time:
.
..
testdir