如何在NSIS中添加来自不同文件夹的文件

sjl*_*wis 6 installer nsis

我已经设置并运行了以下内容:

File file1.bat
File file2.xml
File common.file1.dll
File common.file2.dll
File common.file3.exe
Run Code Online (Sandbox Code Playgroud)

为了避免将公共文件保存在源目录中,我想要的是从父目录引用它们,如下所示:

File file1.bat
File file2.xml
File ..\common.file1.dll
File ..\common.file2.dll
File ..\common.file3.exe
Run Code Online (Sandbox Code Playgroud)

编辑:当我再次尝试时,这实际上有效.

但显然,这是不被承认的.
还有另一种方法来引用这些文件吗?

And*_*ers 13

文件是相对于.nsi和...\xyz应该工作...