You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my application, I have some extra files packaged by NSIS script installer.nsh. like this: Section files FILE ./extrafiles/* Section End
Directory like this: Install_Dir\ extra_files\ app.exe
However, when the application is already installed, and I excute the set-up.exe again and select the same install directory,
the application will always remove all files in the install dir and then covering the directory totally.
Even if I skip the section in NSIS script, it still keep same.
So how could I stop the set-up.exe from removing files in install dir and covering it with new files?
The text was updated successfully, but these errors were encountered:
In my application, I have some extra files packaged by NSIS script installer.nsh. like this:
Section files
FILE ./extrafiles/*
Section End
Directory like this:
Install_Dir\
extra_files\
app.exe
However, when the application is already installed, and I excute the set-up.exe again and select the same install directory,
the application will always remove all files in the install dir and then covering the directory totally.
Even if I skip the section in NSIS script, it still keep same.
So how could I stop the set-up.exe from removing files in install dir and covering it with new files?
The text was updated successfully, but these errors were encountered: