1

我可以读取普通目录的内容,例如

opendir(DIR,"C:\\");  
readdir(DIR);
## now try to open device
opendir(DIR,"Computer\\iPhone"); # ## this fails

但是,像 iPhone 这样的设备不会显示为常规路径,当我尝试使用地址栏中显示的路径访问它时,它会失败。有谁知道如何搜索访问这些文件?谢谢。

4

1 回答 1

0

这不是一个真正的 Perl 问题。Perl 将无法读取 Windows 无法读取的任何目录。如果您的手机(无论是什么品牌)在您的系统上没有显示为驱动器或网络共享,Perl 将无法读取它的内容。

于 2013-10-30T17:05:49.427 回答