Do you *know* that only one process (instance of your program, for example) will be used at a time?

You don't want two instances to try to do the same thing.

Two ideas come to mind here.

  1. Use a daemon (google for it)
  2. Instead of naming the directories (in essence using the filename as metadata (one of my pet projects, hehe))- name the directory something constant, and use a config file (YAML) or Storable.
    Or even cooler.. maybe Cache::File

    If you do something like store meta in config files..
    If your dir is
    /stuff/JohnSmith_jhon99

    Then your meta is
    /stuff/JohnSmith_jhon99/.meta


In reply to Re: Flock to Rename Directory by leocharre
in thread Flock to Rename Directory by virtualweb

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.