12/09/01 00:52:16.70 Ty0CxSJR0 BE:4356285-PLT(23507)
sssp://img.2ch.net/ico/mac.gif
my $count = 1000;
# renameを試行してみる
for (1..$count)
{
#rename("$src", "$dst") and return 0;
move ("$src", "$dst") and return 0;
}
これかぁ。。。
シパーイすると元ファイルが残ったままになるんね。( URLリンク(search.cpan.org) moveの項)
多分、シパーイする状況を考えると次にある、、、
unlink("$src");
も、対応しなきゃかな。
ex.
for (1 .. 1000) { unlink("$src") and last }
で、ますますおかしくなるとw