Does anyone know of a PHP FTP library/function that is capable of downloading whole directories to the local drive. I’ve tried to write a function to do this but its beyond me 🙁
I cant use secure copy or anything like that it has to be a PHP script ran from a local machine to log into a remote server and download a specified directory.
Thanks!
http://php.net/manual/en/function.ftp-get.php
Look in the comments: mroerick at gmx dot net 15-May-2009 07:42
Idea is to: login > get list of files > download the files, as the example does.