mylesh has asked for the wisdom of the Perl Monks concerning the following question:
Had trouble with a program traversing a directory and using the "copy" command to archive the files. Cannot find any reference to that command anywhere. The program stopped on a file over 2 gig in size. I think there may be a file size limit? Need to confirm - program runs in production.
Thanks.
Check out the docs for File::Copy - that's likely to be where the copy command has come from.
Also check that there are no platform specific file size limitations with your OS and that your Perl has largefile support compiled (use perl -V:uselargefiles).