in reply to CGI tempfiles w2k/IIS/AS
That way you could put them in your own directory and delete them yourself without bothering your admin. I think it will work as long as you just include that line before you create a CGI object, but maybe you need to put it in a BEGIN block.$CGITempFile::TMPDIRECTORY = $myTempDir;
If you're still using an older version of CGI.pm, the package name may be different, like this:
$TempFile::TMPDIRECTORY = $myTempDir;
|
|---|