I thought this would be simple. This script will copy the files, as long as the dest folder already exist. If the dest folder doesn't exist, then it just creates a file with the content of the 1st log in it. Also, it won't overwrite files.
I've tried variations...
Any help would be appreciated.
FileCopy("c:\users\ckuser\documents\pixelwix pixelwarp evo\logs\*.*", "c:\ck\system_info\pw_logs\", $FC_OVERWRITE + $FC_CREATEPATH) FileCopy("c:\users\ckuser\documents\pixelwix pixelwarp evo\logs\*.*", "c:\ck\system_info\pw_logs\", '$FC_OVERWRITE + $FC_CREATEPATH' )
FileCopy("c:\users\ckuser\documents\pixelwix pixelwarp evo\logs\*.*", "c:\ck\system_info\pw_logs\", "$FC_OVERWRITE + $FC_CREATEPATH" )
Thanks...