…
…
…
…

Copy/Move, rename, delete directories
Download files(pass through the php script)
Read/Edit files
Create a file/folder
Upload files
Set a particular folder as a “virtual root” for directory listing
Javascript/no javascript
Unicode supported
Thumbnail View
RSS
FTP Layer
…
Sito web: http://simpledirectorylisting.net/…
< ?php
// find files below a given directory whose name matches a given patterm.
// For example, to get an array of all files under /htdocs matching the
// pattern *.content.php use a call such as:
//
// $page_list = find_file(“/htdocs”, “.content.php$”);
function find_file($dir, $pattern, $found = false) {
// find files matching $pattern
if (! $d = @dir($dir))
return false;
while($file = $d -read()) {
// ignore . and ..
if (ereg(“^[.]+$”, $file))
continue;
// if the file is a regular file and matches the pattern, add it to
// the $found[] array
if (ereg($pattern, “${dir}/$file” && is_file(${dir}/$file)))
$found[] = ” $dir/$file”;
// recurse down through directories, adding found …

eXtplorer is a web-based File Manager. You can use it to
Sito web: http://extplorer.sourceforge.net/…

fileNice è uno script php gratuito per browser di file, particolarmente utile per vedere e uplodare files sul server.
Sito web: http://filenice.com…
PHPfileNavigator è un’applicazione open source web based per gestire cartelle e files. Facile da installare e configurare, ti permette di amministrare facilmente file e cartelle del tuo hard disk o del tuo sito web.
Sito web: http://pfn.sourceforge.net/
Segnaliamo anche http://phpatm.org/ che seppur giovane, è un progetto molto ambizioso con tantissime caratteristiche avanzate.…