Re: Remote.pm (File::Remote) error handling question



You can always customize the code in that module and keep a copy for
yourself. Just comment out the part that moves the "access denied"
code:

ie

$! = $1 || 13; becomes $! = $1 # || 13;

save the code and then do the following commands on the root directory
for the module:

perl Makefile.PL
nmake
nmake test
nmake install

The module should now return the actual error code.


.



Relevant Pages