使用PHP连接到远程afp服务器

时间:2011-02-16 04:17:12

标签: php directory afp

我正在尝试创建一个PHP脚本来连接到afp服务器并获取目录列表(每个文件大小)。服务器是我们办公室的本地服务器,但我不能在afp服务器端制作脚本。在我的机器上,我使用这样的东西:

$filesInDir = array();
$filesInMySQL = array();

if (is_dir($uploadDir)) {
    $dh = opendir($uploadDir);
    if ($dh) {
        $file = readdir($dh);

        while ($file != false) {
            $path = $uploadDir . "/" . $file;
            $type = filetype($path);

            if ($type == "file" && $file != ".DS_Store" && $file != "index.php") {
                $filesInDir[] = $file;
            }

            $file = readdir($dh);
        }

        closedir($dh);
    } else {
        echo "Can't open dir " . $uploadDir;
    }
} else {
    echo $uploadDir . " is not a folder";
}

但我无法连接到afp服务器。我看了fopen它不允许afp,我不认为它允许目录列表:

opendir("afp://ServerName/path/to/dir/");

Warning: opendir() [function.opendir]: Unable to find the wrapper "afp" - did you forget to enable it when you configured PHP? in...
Warning: opendir(afp://ServerName/path/to/dir/) [function.opendir]: failed to open dir: No such file or directory in...`

我不是要查看文件是否存在,而是查看整个目录列表。最后,我还必须将文件远程复制到输出目录中。

例如

mkdir afp://ServerName/output/output001/
cp afp://ServerName/path/to/dir/neededfile.txt afp://ServerName/output/output001/

2 个答案:

答案 0 :(得分:0)

也许使用http://sourceforge.net/projects/afpfs-ng/来安装它......

答案 1 :(得分:0)

我正在开发Mac Mini,所以我意识到我可以挂载afp共享,并使用readdir。我不得不使用以下方法安装驱动器:

sudo -u _www mkdir /Volumes/idisk
sudo -u _www mount_afp -i afp://<IP>/sharename/ /Volumes/idisk/

更多详情here