RE: [Perl-unix-users] File Copy and Move on Unix (Solaris)

2001-02-02 Thread Frank Novak
Thanks. I use File::Copy but I did not find anything that duplicates the Move (Copy\Delete) functionality. I could just do a system 'rm ', but I was looking for something a little cleaner. Frank -Original Message- From: Douglas Sparling To: '[EMAIL PROTECTED]' Sent: 1/29/01 10:52 AM Sub

RE: [Perl-unix-users] File Copy and Move on Unix (Solaris)

2001-02-02 Thread Douglas Sparling
Thanks. I use File::Copy but I did not find anything that duplicates the Move (Copy\Delete) functionality. I could just do a system 'rm ', but I was looking for something a little cleaner. To delete, you might try unlink: perldoc -f unlink to copy or move (rename) you could use File::Copy: #!