| Apache-TempFile documentation | view source | Contained in the Apache-TempFile distribution. |
Apache::TempFile - Allocate temporary filenames for the duration of a request
use Apache::TempFile qw(tempname) my($name) = tempname(); open(FILE,">$name"); print FILE "Testing\n"; close(FILE);
This module provides names for temporary files and ensures that they are removed when the current request is completed.
This routine returns a unique temporary filename and arranges for that file to be removed when the current request is completed. If an extension is supplied as an argument that it will be appended to the filename which is generated.
my($name) = Apache::TempFile::tempname();
my($name) = Apache::TempFile::tempname("html");
Tom Hughes, tom@compton.nu
Apache(3), mod_perl(3)
| Apache-TempFile documentation | view source | Contained in the Apache-TempFile distribution. |