OutFile "C:\Documents and Settings\Administrator\Desktop\test\RenameTest.exe"I have in the folder "test" 2 other folders "dest" and "source". In the "source" folder I have a txt file "testfile.txt". What I would like to get at here is to get the installer to move the contence of folder "source" to folder "dest".
InstallDir "C:\Documents and Settings\Administrator\Desktop\test"
Section "Rename Test"
Rename "$INSTDIR\source" "$INSTDIR\dest"
SectionEnd
From the docu:
Rename source_file to dest_file. Functions just like the Win32 API MoveFile, which means you can move a file from anywhere on the system to anywhere else, and you can [B]move a directory8/B] to somewhere else on the same driveBut I just can't get it to move the damn Dir from point A to B. Any and all help is appriciated 🙂