Archive: Copying files


Copying files
Pretty simple really, I have a folder which is next to my output Setup.exe I want to copy all of the files from that folder into my installation directory:


CreateDirectory "$INSTDIR\XML"
CopyFiles "XML\*.xml" "$INSTDIR\XML"


Doesn't work, keeps saying copying failed.

What am I doing wrong?

Don't use a relative source path; use $EXEDIR.

Stu


Cheers dude.