On Aug 22, 2006, at 9:52 AM, Geoffrey Young wrote:
Tom Schindl wrote:
What does Apache::File provide other classes in mp2/standard perl
don't?
- $fh->tmpfile() => File::Temp
this is the only one that comes to mind - Apache::File::tmpfile()
creates a temporary file that lingers for the rest of the request
and is
cleaned up automatically via a per-request cleanup. existing tempfile
tools aren't _exactly_ like this. sure, it's simple enough to code
yourself, but we used to offer this as part of the bundle...
Hmm...
Maybe i can wrap / subclass APR::File and then just add the tmpfile
functionality