Skip to content
⌘ NSIS Forum Archive

Copying files

3 posts

d347hm4n#

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?