How to backup a specific folder on the user's desktop when the user confirms the removal of the application?
I tried this without success ... Maybe there is an easier way to do this without using code ...
procedure CurUninstallStepChanged(CurUninstallStep: TUninstallStep); begin if CurUninstallStep = usUninstall then begin FileCopy('{app}\Profile\*', '{userdesktop}\Backup\Profile\', False); end; end;
Thanks guys!:)
source share