Win32-FileOp - Re: Having Trouble Copying Files

Posted on Mon Jun 20 15:18:50 2005 by jenda in response to 624 (See the whole thread of 2)
Re: Having Trouble Copying Files

Most probably the current working directory is not what you expect.

Try to add
use Cwd qw(getcwd); print "In folder: " . getcwd() . "\n";
on top of the script. Does it print the expected path?
Write a response