in reply to IO::File::new_tmpfile on IIS
use IO::File; print "Content-type: text/html\n\n"; print "Go..\n"; my $fh = IO::File->new_tmpfile(); if (defined $fh) { # Do something with the tmpfile print "Defined: $fh\n"; } else { # Do something in memory print "Not defined\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: IO::File::new_tmpfile on IIS
by earthboundmisfit (Chaplain) on Oct 18, 2001 at 16:43 UTC |