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

Re: CMD prompt error

by poj (Abbot)
on Jan 23, 2012 at 21:03 UTC ( [id://949524]=note: print w/replies, xml ) Need Help??


in reply to CMD prompt error

Try replacing this code
if(system(-r $createdir)) {} else { $mw->messageBox (-default => 'Ok',-title => 'Alert!',-message => "Crea +te C:/temp directory first to run the program", -type => 'Ok',); exit; }
with this
unless ( -d $createdir ){ $mw->messageBox ( -default => 'Ok', -title => 'Alert!', -message => "Create $createdir directory first to run the program", -type => 'Ok',); exit; }
poj

Log In?
Username:
Password:

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

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

    No recent polls found