On Tue, 2006-08-22 at 11:30 -0400, Jonathan Vanasco wrote: > Maybe i can wrap / subclass APR::File and then just add the tmpfile > functionality
If you use File::Temp, they will disappear when you close the file on
most OSes. Or you can do this:
$r->push_handlers(PerlCleanupHandler => sub { File::Temp::cleanup() });
- Perrin
