in reply to directory Content Drop-down

Try using the opendir function and CGI.pm for the drop-down menu, as such:
use CGI qw(:standard :html3); opendir THISDIR, "docs/images" or die "failed opening: $!"; @allfiles = grep !/^\.\.?$/, readdir THISDIR; closedir THISDIR; print popup_menu(-name=>'images', -values=>\@allfiles);