问题描述
旧版本的应用已安装在/program files/xxx/(1)或自定义位置中
Old version of app was installed in /program files/xxx/ (1) or custom location
在安装新版本时,需要检查默认位置(1)是否安装了旧版本
when installing the new version need to check if old version installed in default location (1)
如果是
创建/program files/yyy/(2)并从旧位置复制文件,然后继续从位置(2)安装
create /program files/yyy/ (2) and copy the files from old location and continue installation with location (2)
如果旧版本安装在其他位置,则继续安装而不更改位置
if old version installed in different location continue installation without changing location
欢迎任何建议
- 如何从Inno Script中检查旧位置是否存在
- 如何创建旧位置文件夹的副本并将其重命名
谢谢
推荐答案
请参阅文档此处,然后在文件系统功能"和文件功能"下查看.
Refer to the documentation here and look under "File System functions" and "File functions".
您应根据自己的目的使用DirExists
,FileCopy
和RenameFile
函数.
You should use the DirExists
, FileCopy
and RenameFile
functions for your purposes.
这篇关于如果旧安装使用默认位置,则更改安装位置(程序文件/)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!