Im using .iss file to setup the installer and I have an application where I need to output the files to a sub directory.
my structure
appnamerootdir appnamerootdirsubdir
I configured it like this and this is creating the files correctly in the subdirectory
Source: "..appnamebinRelease*"; DestDir: "{app}appnamerootdirsubdir"; Flags: ignoreversion recursesubdirs createallsubdirs;
But the problem was all the files created in that sub directory are also created in the root directory. The files should be inside the subdir only.
actual:
appnamerootdirmydll.dll
appnamerootdirsubdirmydll.dll
expected:
appnamerootdir
appnamerootdirsubdirmydll.dll
expected:
appnamerootdir
appnamerootdirsubdirmydll.dll
user26416502 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1