in reply to Re: Re: copy files to the nonpermanent directory
in thread copy files to the nonpermanent directory

As the values that you are using to build your path are coming
from a user, I would suggest that they still contain the newline character
you will need to remove this
chomp($path); chomp($file); $dir1 = join('\\', 'c:', $path, $file);
Letting us see a snippet of your code will make solving your problems MUCH easier