in reply to Hashes and File searches
Well if the files you downloaded are in @ftp_files and if your hash has the filenames as keys and is called %file_names, you could do something like:
my @exceptions = grep ! exists $file_names{$_}, @ftp_files;
HTH,
Charles K. Clarkson