You could check for the existance of files, and then sleep for ten seconds if none exist. That's going to be a little more processor and IO-friendly to other processes on the system than repeatedly checking for new files as many times per second as is possible.

Your script is also assuming it will never see files of the same name twice. That may be fine, but just something you should keep in mind.

Also, I think it would be a good idea for @batchfiles to be lexically scoped (as well as any other variables within the while(){...} loop). This is important because with a script that's going to be idling a long time, and iterating over and overagain, you'll have to remember to either reset all variables within the loop, or let them fall out of scope. The latter is automatic if you use lexicals.


Dave


In reply to Re: Batch Processing Files by davido
in thread Batch Processing Files by Cody Pendant

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.