如何将额外文件(应用程序需要)添加到 Inno setup vb.net
How to add an extra file (needed for the app) into Inno setup vb.net
我的 VB.NET 代码调用了一个额外的文件,它的路径是 "Application.StartupPath & "\List.txt"
我需要这个文件在我的应用程序的安装目录中,靠近主要的可执行文件。
我能做什么?
我在 [Files] 部分下添加了一行,提到了所需文件的 Source 并且我将 DestDir:
与可执行文件的 DestDir:
.
相同
像这样:
[Files]
Source: "D:\.NET Projects\SampleProject\Sample\bin\Release\myApp.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: "D:\.NET Projects\SampleProject\Sample\bin\Release\List.txt"; DestDir: "{app}"; Flags: ignoreversion
这样做会将这两个文件安装在同一目录中。然后我可以使用此路径访问 List.txt
文件:"Application.StartupPath & "\List.txt"
我的 VB.NET 代码调用了一个额外的文件,它的路径是 "Application.StartupPath & "\List.txt"
我需要这个文件在我的应用程序的安装目录中,靠近主要的可执行文件。
我能做什么?
我在 [Files] 部分下添加了一行,提到了所需文件的 Source 并且我将 DestDir:
与可执行文件的 DestDir:
.
像这样:
[Files]
Source: "D:\.NET Projects\SampleProject\Sample\bin\Release\myApp.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: "D:\.NET Projects\SampleProject\Sample\bin\Release\List.txt"; DestDir: "{app}"; Flags: ignoreversion
这样做会将这两个文件安装在同一目录中。然后我可以使用此路径访问 List.txt
文件:"Application.StartupPath & "\List.txt"