in reply to Zipping Files

or try File::Find::Rule:
my @files = File::Find::Rule->file() ->name( '*.txt' ) ->maxdepth(1) ->in( $dir ); $zip->addFile($_) for @files;