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