Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: Temporary file management in Perl -- is it possible?

by kennethk (Abbot)
on Apr 24, 2013 at 20:23 UTC ( [id://1030517]=note: print w/replies, xml ) Need Help??


in reply to Temporary file management in Perl -- is it possible?

I'd say a cron job that removes files older than 10 minutes is in general cleaner, but one possibility would be fork and wait 10 minutes, a la:
if (!fork) { sleep 600; unlink "$gmtstring-$filehandle"; exit; }

Of course, for production, you'll want to test to make sure fork returns defined, probably set $SIG{CHLD}='IGNORE' (see perlipc) and a couple other clean-ups.


#11929 First ask yourself `How would I do this without a computer?' Then have the computer do it the same way.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (3)
As of 2024-04-24 05:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found