Play around with *FILEHANDLE. For example:
open FILEHANDLE, ">blah.txt";
&closeFile( *FILEHANDLE );
sub closeFile {
my $fh = shift;
print $fh "I closed you.\n";
close $fh;
}
Mkrous wrote:
Cheers Joseph,
thanks for your reply.
Still it does not work,
$FileHandle is set to the 'FILEHANDLE' string
and unlink can't work because no file with filename
FILEHANDLE exists.
Any other ideas?
Macis
--- "R. Joseph Newton" <[EMAIL PROTECTED]> wrote:
I will try something like:
my $FileHandle = FILEHANDLE;
"...unlink($FileHandle);
__________________________________________________
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com
--
Benjamin J. Siders
Software Engineer
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]