|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-06-30 23:34 UTC] matslin at orakel dot ntnu dot no
[2002-07-04 09:49 UTC] sniper@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 03:00:01 2025 UTC |
I'm not really up to speed with making diffs and contributing myself, otherwise I would. There are many posts in the manual showing various ways to get recursive directory listing with ftp_rawlist, but they're all very slow as they required chdir'ing into each subdirectory.. One tiny change to ext/ftp/ftp.c at line 420 return ftp_genlist(ftp, "LIST", path); changed to return ftp_genlist(ftp, "LIST -R", path); And the FTP daemon at the other end will do all the work. It would be nice to have a more eligant version of that incorperated into a future release. Thanks..