Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: What did you have to Unlearn

by spaz (Pilgrim)
on Jun 08, 2001 at 22:12 UTC ( [id://87000]=note: print w/replies, xml ) Need Help??


in reply to What did you have to Unlearn

I had to unlearn that I can't program in English.

$ftp->mkdir( $dir ) and $ftp->cd( $dir ) unless $ftp->cd( $dir );

-- Dave

Replies are listed 'Best First'.
Re: What did you have to Unlearn
by tedv (Pilgrim) on Jun 08, 2001 at 22:39 UTC
    Shouldn't that be something like...
    $ftp->cd($dir) or ($ftp->mkdir($dir) and $ftp->cd($dir));
    Technically, the most english way of writing the code (that actually works) is:
    $ftp->mkdir($dir) and $ftp->cd($dir)
    If you don't mind making the standard case having one extra file system access and the non-standard case having one less access.

    -Ted
      Try it! The first time you end up in the dir. The second time not. Because mkdir fails. Because the dir is already there. Ok, there are Server around, which go "Make a Dir? Is the dir there or not? So don't bother me with particulars!". There your tactic succeeds.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (5)
As of 2024-04-23 06:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found