my @filehandles = $query->upload('filename'); foreach my $fh (@filehandles) { if (defined($fh)) { while (<$fh>) { print; # or write it out locally } } }