Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: problem with Archive::Zip

by Utilitarian (Vicar)
on Aug 09, 2010 at 12:06 UTC ( [id://853793]=note: print w/replies, xml ) Need Help??


in reply to problem with Archive::Zip

From Archive::Zip
If the name given does not represent a readable plain file or symbolic + link, undef will be returned
It looks as though $renamed_file is not "a readable plain file or symbolic link".

Try wrapping your code with this check to be sure:

if ( ( -r $renamed_file )&& ( ( -f $renamed_file ) || ( -l $renamed_fi +le ) ) ){ #add to zip } else{ print "$renamed_file is not a readable valid file id\n" }
print "Good ",qw(night morning afternoon evening)[(localtime)[2]/6]," fellow monks."

Replies are listed 'Best First'.
Re^2: problem with Archive::Zip
by fionbarr (Friar) on Aug 09, 2010 at 12:13 UTC
    that was it EXACTLY...so simple but I wasn't seeing it. Thank you.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (3)
As of 2024-04-25 10:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found