Any program that will make a list of every file on your server & perhaps save it locally as a txt file?
::Help:: Is there any script/program that will ...
Collapse
X
-
Patricia..
Try this...
Cut n paste that into notepad, save it as domains.php or whatever, upload to a domain and call it from the webPHP Code:<?php // PRINT DOMAINS $dirhandle= opendir("/www/virtual/gamedia/html"); $number_of_links = 0; while($filename = readdir($dirhandle)) { if ($filename != ".") { if ($filename != "..") { $filenames[]=$filename; } } } closedir($dirhandle); sort($filenames); for($i=0; $i < count($filenames); $i++) { print("<FONT FACE=\"Arial, Helvetica\" SIZE=2>$filenames[$i]</FONT><BR>"); } ?>
Regards,
LeeComment
-
Thanks swedguy ;)Originally posted by swedguy
Or you can SSH to your server and type this:
find /folder/to/start/in -print > list.txt
list.txt will contain a nice formatted list with every file from /folder/to/start/in (change it to where you want to start) and up.Comment

Comment