in reply to Re^2: File handle as a input variable
in thread File handle as a input variable

This: my $File_Handle = "File_Handle"; is wrong. delete that.

for the open, put a valid path in there, like:
open my $File_Handle, ">", "full_textual_path_to_a_file" or die ....
Later use:
print $File_Handle "some stuff\n";

Replies are listed 'Best First'.
Re^4: File handle as a input variable
by Anonymous Monk on May 06, 2009 at 05:00 UTC
    But I am getting the Fila Handle as a string argument How do i handle that thanks
      Don't pass strings