If you upload all of the webgifs to a web server with php, you could use this to make a list of all of the graphics... little easier then browsing through each one.
PHP Code:
<?php
$folderpath = "PATH/TO/FILES";
if ($dir = @opendir($folderpath)) {
while (($file = readdir($dir))!==false) {
if ($file!="." && $file!="..")
echo "$file\n<br>\n";
}
closedir($dir);
}
?>
and if you want the graphics to show next to the name:
PHP Code:
<?php
$folderpath = "PATH/TO/FILES";
if ($dir = @opendir($folderpath)) {
while (($file = readdir($dir))!==false)
if ($file!="." && $file!="..")
echo "<img src=\"$file\"> $file\n<br>\n";
closedir($dir);
}
?>