1

我正在寻找选项列表,可以在目录之前的方法 ftp_nlist 和 ftp_rawlist 中的 PHP 模块 FTP 中使用。我发现了一些例子:

 // include hidden files
 ftp_rawlist($h, '-a /');

 // more complex - only names of files
 ftp_rawlist($h, '-1l /');

也许它是特定于 FTP 服务器的,但两者都适用于 Windows 和 Linux。我有任何带有完整列表的规范。

4

1 回答 1

0

选项特定于 FTP 服务器的 LIST 命令。

Linux ProFTPd 服务器上可用的 ListOptions。 http://www.proftpd.org/docs/howto/ListOptions.html

于 2012-06-05T21:29:48.553 回答