I discovered that File::NCopy uses the function "glob" to expand file names. My problem is that I need to pass file names that have spaces in them and "glob" does not process them. So I did the following override (I do not need to expand the file names):
package Apache::AAM; . . . package File::NCopy; use subs qw(glob); sub glob {@_}; package Apache::AAM; . . . Is there a better way to do this? +================================+ | George Sanderson <[EMAIL PROTECTED]> | http://www.xorgate.com +================================+