Hi Everyone, I am writing a program that is going to send sales quotes and receive data to and from a ftp server. I am trying make it so that if the computer gets disonnected from our RAS it'll redial and then resend the quote that it failed on and all other quotes left in the array. I am wondering what the best way to do this would be. As you can see in the code below, when the transfer fails I call the routine to connect to the RAS. Now I was thinking of using a goto command here to jump back to the beginning of the current for loop after the connection is made. I am hesitant only because I know how goto's should be avoided unless necessary. Is this a good place to use one? or is there another method I should look into?
# # Loop through quotes array and upload each file in the array. # foreach my $quote (@quotes) { system("cls"); emphasize("Sending quote: $quote"); my $return = $ftp->put("$quote"); # # If the upload completed $return should == $quote # and we can move the file to a backup folder. # if ($return == $quote) { + # Needs testing!!!!!!!!!!!!!! move("$quote", "${new_dir}\\$quote") or warn "move failed: + $!"; } else { while ( &connect_ras() ) {} # ShouldI place a goto here and a label at the beginning? } } disconnect_ftp(); }

----
Nothing in the world can take the place of persistence. Talent will not; nothing is more common than unsuccessful men with talent. Genius will not; unrewarded genius is almost a proverb. Education will not; the world is full of educated failures. Persistence and determination alone are omnipotent. --Calvin Coolidge (1872-1933)

In reply to To goto or not to goto by PerlJam

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.