Archive: simple move folder command


simple move folder command
Hello all, I want to write a small script that will copy an entire folder (along with it's subdirs and all the files) to the $INSTDIR. I'm basing my script on the example1.nsi script as I need a very simple thing. in that file ther is thissection Section "ThisNameIsIgnoredSoWhyBother?"
; Set output path to the installation directory.
SetOutPath $INSTDIR
; Put file there
FILE "C:\WINDOWS\notepad.exe"
SectionEnd ; end the section . I want to replace FILE "C:\WINDOWS\notepad.exe"
with the path of my folder e.g. FILE "C:\temp" so it will copy "C:\temp" to the $INSTDIR.I'm sure it simple but yet I need some help as I'm very new at this. Thanks


no need ! GOT IT! /r is the answer Thanks anyway