For generating, say, unique temporary files, use
IO::File::new_tmpfile. In addition there's the
POSIX::tmpnam() function which would get you a unique filename (subject to a race condition, however, since there's a period between when it's generated and when it's used).
In a pinch, use something like this:
$num = 12345;
$dir = "/some/dir/";
$num++ while -e "$dir/$num";
open(F, ">$dir/$num") or die ...
But of course, there's still a race condition. A more secure solution would be to take advantage of
sysopen and O_EXCL to iterate through filenames:
use Fcntl;
use FileHandle;
$num++ while !sysopen(F, "$dir/$num", O_EXCL|O_CREAT, 0777) && $! eq "
+File exists";
die "$dir/$num: $!" if $!;
Once you start adding all of the bells and whistles, though, you're just re-implementing
IO::File new_tmpfile.
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.