问题描述
我需要写到:
C:\Users\user\AppData\Roaming\AppName
C:\Users\user\AppData\Roaming\AppName
文件夹在安装过程中。我正在使用InnoIDE程序进行设置,它很棒。但是,它似乎缺少用于轻松访问该目录的'AppData'特殊文件夹。
folder during the setup process. I'm using the InnoIDE program for setup, and it's awesome. However, it seems to be lacking an 'AppData' special folder for easily accessing that directory.
例如,您可以使用:
DestDir: {app}
来写入应用程序目录。
For example, you can use:DestDir: "{app}"
to write the application directory.
但是如何进入AppData?有所有预设的DestDir选项的列表吗?
But how do you get to AppData? Is there a list of all the preset DestDir options?
推荐答案
Arg,明白了。
{userappdata}
→C:\Users\user\AppData\Roaming\AppName
{userappdata}
→ C:\Users\user\AppData\Roaming\AppName
如在此处找到:
这篇关于使用InnoIDE写入AppData目录吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!