Chris Zampese wrote:
>
> From: "John W. Krahn" <[EMAIL PROTECTED]>
> >
> > use File::Copy;
> >
> > open OLD, "< $old" or die "Cannot open '$old' $!";
> > binmode OLD;
> > open NEW, "> $new" or die "Cannot open '$new' $!";
> > binmode NEW;
> > copy( \*OLD, \*NEW ) or die "Cannot copy '$old' to '$n
- Original Message -
From: "John W. Krahn" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, February 10, 2002 10:03 AM
Subject: Re: rename a file in win98
> > I have also tried using File::Copy but it doesnt copy the last line of
the
> >
Chris Zampese wrote:
>
> > From: "Chris Zampese" <[EMAIL PROTECTED]>
> >
> > Just wondering if anyone has any bright ideas on how to rename a file in
> > Win98. I have tried the following...
> >
> > my $old="C:/sentslips/sentslipstemp.txt";
> > my $new="C:/sentslips/sentslips1.txt";
> >
> > rena
> - Original Message -
> From: "Chris Zampese" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Sunday, February 10, 2002 12:57 AM
> Subject: rename a file in win98
>
>
> Just wondering if anyone has any bright ideas on how to rename a file in
> Win98. I have tried the following...