Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: finding file in a zip file

by Paladin (Vicar)
on Jan 31, 2005 at 19:17 UTC ( [id://426698]=note: print w/replies, xml ) Need Help??


in reply to finding file in a zip file

You have your .*$file in single quotes, which means the variable isn't being interpolated, so it's looking for a file that matches zero or more of anything, followed by the dollar sign, followed by the word file. Try changing those to double quotes, and that part will work fine.

As for the rest... The extractToFileNamed() method works on the return values of membersMatching, and not on strings. You probably want something like:

foreach my $archived_file (@files) { $archived_file->extractToFileNamed('some_file_name') or die "Unable to extract data file $! ."; }

Also, $#files gives you the index of the last element, not the number of elements in the array. For that you want my $numfiles = @files

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://426698]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (2)
As of 2024-04-25 00:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found