Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: Renaming a Zip file with a user input variable

by rpnoble419 (Pilgrim)
on Aug 06, 2012 at 21:33 UTC ( [id://985840]=note: print w/replies, xml ) Need Help??


in reply to Renaming a Zip file with a user input variable

Where are you getting the the user input from when you go into production this code? You do not want to use any web form data directly as this may open your code up to a security issue.
  • Comment on Re: Renaming a Zip file with a user input variable

Replies are listed 'Best First'.
Re^2: Renaming a Zip file with a user input variable
by mayank646 (Initiate) on Aug 07, 2012 at 12:17 UTC
    Hi I am using the following code
    #! usr/bin/perl use Archive::Zip; # Getting Details print "Enter the Folder Name \n"; $rn = <>; print "The details are as follows: \n"; print "Release Name is *** $rn *** \n"; print "Business Unit is *** ABC *** \n"; print "Environment is *** ABC *** \n"; # Taking Backup my $zip_file = 'file.zip'; my $zip = Archive::Zip-> new (); $zip ->addTree( 'c:/zip'); $zip ->writeToFileNamed($zip_file); if (-e $zip_file) { print "Archive created successfully!"; } else{ print "Error in archive creation!"; }
    here i am taking the input from the user and storing it in a variable $rn now i want to make the zip file with the name stored in the variable $rn.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (4)
As of 2024-04-23 11:39 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found