[求助]如何在已经列出目录的情况下遍历?

[求助]如何在已经列出目录的情况下遍历?

[求助]如何在已经列出目录的情况下遍历?
局域网上的共享目录已经得到,但是不知道怎么把目前下的文件及文件夹都遍历出来。
如得到的目录是:"//192.168.1.01/share"
但是如何显示其中的文件和子目录呢?

请达人指教,不胜感激。
use File::Find;----p.
use File::Find;

perldoc File::Find;
试了下 但是还是不支持上.
相关图像上载:(JPG 格式, 15 K)


试了下 但是还是不支持上述的地址(或者目录名)啊
运行结果如图片所示
真是晕了……
#!/usr/bin/perl -w
use strict;
use File::Find;

find(\&wanted, "10.130.204.34\\\\Perl\\");

sub wanted {
print "Current dir is: $File::Find::dir \n";
print "Current File is: $File::Find::name \n";

}
觉睡多了吧?--明明是 \.
觉睡多了吧?
明明是 \\xxx.xxx.xxx.xxx\Perl,咋就变成了 xxx.xxx.xxx\\Perl\ 了呢?
呵呵――――
[CCB]3[/CCB]
呵呵 成功啦!!
谢谢喽