$fs represents your object...It is not a scalar value. After you call scan on the object you can test it with
->error or
->skipped to make sure you didn't encounter any exceptions. You want to use the following method to test for a suspicious file...
if($fs->suspicious) { print "suspicious file\n"; }
If you see nothing, File::Scan has determined the file is fine.