#How do I name the absolute path? my $sourceFile = "C:\\webServer\\myfile.doc"; my $destinationFile = "\\\\myInfoServer\\dirOne\\"; system("copy $sourceFile $destinationFile > nul") == 0 || die "File did not copy: $!"; #will change the copy command to cp when I put it on Unix