Re: [Off Topic] Directory Listing to HTML

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

 



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


[Index of Archives]     [Current Fedora Users]     [Fedora Desktop]     [Fedora SELinux]     [Yosemite News]     [Yosemite Photos]     [KDE Users]     [Fedora Tools]     [Fedora Docs]

  Powered by Linux