in reply to File::Copy & XP Encrypted files

I don't have anything to test this on, but it might work to copy from a file handle:

use File::Copy; { open local(*ORIG), '<', '/path/to/encrypted.foo' or die $!; copy \*ORIG, '/path/to/plain.foo'; close ORIG; }
That is just a wild guess.

After Compline,
Zaxo

Replies are listed 'Best First'.
Re: Re: File::Copy & XP Encrypted files
by g3lfling (Initiate) on Jun 20, 2003 at 03:21 UTC
    Thanks Worked like a dream... Cheers