Mailinglist Archive: opensuse-programming (36 mails)
| < Previous | Next > |
Re: [suse-programming-e] Perl Question regarding file handles
- From: jbudd <jbudd@xxxxxxxxx>
- Date: Mon, 4 Aug 2003 13:21:34 -0400
- Message-id: <200308041321.34199.jbudd@xxxxxxxxx>
On Monday 04 August 2003 07:11, Marius Roets wrote:
Ok this time to the list.
Try something like this.
$handle = $self->{'handle'};
if (open($handle, $self->{'path'}))
{
$data = <$handle>;
...
close($handle);
}
Ok this time to the list.
Try something like this.
$handle = $self->{'handle'};
if (open($handle, $self->{'path'}))
{
$data = <$handle>;
...
close($handle);
}
| < Previous | Next > |