Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: sequencial file naming

by marcink (Monk)
on Jun 08, 2001 at 20:17 UTC ( [id://86959]=note: print w/replies, xml ) Need Help??


in reply to sequencial file naming

If you're sure that you're the only one trying to find such a file (no race conditions), you can do it this way:

#!/usr/bin/perl -w use strict; my $i = 1; $i++ while -f "file_$i.dat"; open OUTFILE, "file_$i.dat";


The problem is that someone could create the file between this program's loop and open statements. To avoid it you could either use:

$i++ while !sysopen( FILE, "file_$i.dat",O_RDWR|O_CREAT|O_EXCL);


...or (the recommended solution) use File::MkTemp (if you don't need the names to be small natural numbers).

Update: I forgot to add that you need to 'use IO::File;' to get the O_* constants for sysopen.

-mk

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://86959]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (5)
As of 2024-04-19 03:42 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found