I have a program that will generate pixel intensity values for png images and often those images must be overwritten with new files of the same name because of some failure with the original resulting text file. The question I have is when I copy a new version of that file do the destination directory do I have to remove the destination file with the same name first or will the destination file be over written?

system ("rm -rf /home/alos/Y2H_images/all$intensity");
system ("cp $intensity /home/alos/Y2H_images/all");

Or will executing the copy command in the perl script automatically overwrite the file? Thanks

link|improve this question

Why are you using system() calls for things that perl can do with a builtin function (unlink) and a standard module (File::Copy)? You just end up sacrificing portability and performance. – Wooble Jul 28 '11 at 14:10
Hi Wooble, 1 I am new to perl, 2 portability is not an issue as the program that is this used in is not going to be distributed on any other systems because it is only used in house. 3 Performance is not an issue either as we are happy with the programs current performance and these calls have not added much to the run time. However I will start using this method from now on. Thank you Wooble – Alos Jul 28 '11 at 15:20
feedback

4 Answers

up vote 2 down vote accepted

As was mentioned in the comments, using File::Copy is really the better solution. It will overwrite the destination file (at least on my system).

use File::Copy;
copy $intensity, "/home/alos/Y2H_images/all" or die $!;

If you wish to check if the destination file already exists, that can be done with:

print "File exists: $intensity\n" if -e $intensity;

If you still wish to delete the file before copying it:

unlink "/home/alos/Y2H_images/all$intensity" or die $!;
link|improve this answer
Hi thanks for providing help on File::Copy +1 – Alos Jul 28 '11 at 15:18
@Alos No problem. The documentation is pretty straightforward in the link I provided, if you need more info. – TLP Jul 28 '11 at 15:23
feedback

It's not Perl which executes the command, it's the shell being invoked by Perl with the given string as its argument.

And yes, it's like any normal copy -- it will clobber any existing file of the same name just as if you'd typed it into the shell yourself, and fail on permission errors etc., just as if you'd typed it into the shell yourself.

Furthermore, wildcard expansions and string escaping are shell-specific and must be considered for portability and security reasons.

link|improve this answer
thanks for the info +1 – Alos Jul 28 '11 at 13:56
feedback

You can simply copy the new files over, and the old ones will be replaced.

cp allows to control overwrite behavior through the i and n flags; by default, anyway, files are overwritten.

If you want to be safe in the face of specific error conditions, i.e., the destination file cannot be open, you can specify the -f flag:

 system ("cp -f $intensity /home/alos/Y2H_images/all");
link|improve this answer
thank you for the help +1 – Alos Jul 28 '11 at 13:57
feedback

If you're calling it in system, it acts just like "real life". Yes.

link|improve this answer
thank you for the info +1 – Alos Jul 28 '11 at 13:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.