[Off Topic] Directory Listing to HTML

Alexandru Ciobanu alex at tvtransilvania.ro
Tue Sep 18 17:49:43 UTC 2007


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




More information about the fedora-list mailing list