ouput the contents of a folder for download

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



I want to output the file contents of a folder to a php page and provide a 
link for them to be downloaded.

This is what I have so far but I cannot get a filename or get it to iterate 
through all the files in a folder.

<?php

$dir = "mydirectory";

// Open a known directory, and proceed to read its contents
if (is_dir($dir)) {
   if ($dh = opendir($dir)) {
       while (($file = readdir($dh)) !== false) {

            echo  filetype($file) . "\n";
             echo filesize($file);
       }
       closedir($dh);
   }
}
?> 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux