Hi Monks,
I have found a problem on Mac OS X with File::Copy Module.
If there is a "Blank" in the folder or file name of a source or target file File::Copy fails.
# Any sugesstions what I can do?
Here is a test script:
#!/usr/bin/perl -w
use File::Copy;
$source = $ARGV[0];
$target = $ARGV1;
copy($source, $target) or die "Can't copy files ($!) ($?)\n";
exit 0;