How to Get File Size of Files on FTP Server?
问题 I need a list of all the files (and associated file sizes) on an FTP server. I can get a list of files using CodeIgniter’s FTP class, but no idea how to get the file size. How do I get the file sizes? Thanks. 回答1: I know nothing about CodeIgniter's FTP class, but what about this? http://www.php.net/manual/en/function.ftp-rawlist.php I assume that the FTP class' list_files() method doesn't provide this info. Is that correct? 回答2: Just had a quick look at CodeIgniters FTP class.. As its written