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
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