0
我想知道是否可以在卸載我的應用程序後在分區上保留我的「特殊」文件夾?我需要保留一些文件以便下次安裝,這次對我來說非常有用。也許有什麼辦法來設置卸載的確切位置或類似的東西?Inno安裝程序如何在卸載過程中不刪除特殊文件夾
任何想法?
我想知道是否可以在卸載我的應用程序後在分區上保留我的「特殊」文件夾?我需要保留一些文件以便下次安裝,這次對我來說非常有用。也許有什麼辦法來設置卸載的確切位置或類似的東西?Inno安裝程序如何在卸載過程中不刪除特殊文件夾
任何想法?
爲避免在卸載過程中刪除已安裝的文件/文件夾,應使用[Files] section中描述的uninsneveruninstall
標誌。
uninsneveruninstall
Never remove the file. This flag can be useful when installing very common shared files that shouldn't be deleted under any circumstances, such as MFC DLLs. Note that if this flag is combined with the sharedfile flag, the file will never be deleted at uninstall time but the reference count will still be properly decremented.
什麼特殊的文件夾?你的問題非常模糊。 –
在安裝過程中爲此文件夾/文件使用'uninsneveruninstall'標誌。 – RobeN
@RobeN,這正是我的意思。非常感謝。 – michaueqq