James Kosin wrote:
Anyone have a good script to generate an HTML file for a directory listing?
In what language?
Here are some pieces that can get you going. You can also do this is sh, perl, etc., with a simple loop[1].
python: http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/200131
php: <?php $dir = opendir("."); while ($file = readdir($dir)) { if ($file != "." && $file != ".." && $file != "") { if (is_dir($file)){ print "<li><a href=\"$file/\">$file</a></li>\n"; } } } closedir($dir); clearstatcache(); ?> Not tested. [1]http://en.wikipedia.org/wiki/Control_flow#Loops