Hi,
It would be alot faster and cleaner to create the entire build in a local temp folder, then copy the final files to the destination, whether it be local or networked.
Actually, the build process copies the files in the target folder and then adds them to a package in the same folder. This involves two operations:
1 - copy the files
2 - build the package
If the package was built in the temp folder and then copied into the target folder, the operations would be:
1 - copy the files in the Temp folder
2 - build the package in the Temp folder
3 - move the package in the target folder
So this process could take longer.
Regards,
Cosmin