作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我不知道,如果我要求的是可能的,但无论如何,我开始了:
我有以下使用 Inno 下载插件的代码:
procedure CurPageChanged(CurPageID: Integer);
begin
if CurPageID = wpReady then
begin
idpClearFiles;
if IsComponentSelected('src') then
begin
idpAddFile(
'https://example.com/files/prj-sources-1.2.3.zip',
ExpandConstant('{tmp}\src.zip'));
end;
end;
end;
我想在再次下载之前检查文件是否已经下载到文件夹中,如果没有,则下载它。
最佳答案
您可以通过 FileExists
检查文件是否存在功能。在你的情况下它会是这样的:
procedure CurPageChanged(CurPageID: Integer);
var
FileName: string;
begin
if CurPageID = wpReady then
begin
idpClearFiles;
{ better use a local variable to avoid expanding the same path twice }
FileName := ExpandConstant('{tmp}\src.zip');
{ if the component item is checked and file does not exist yet, enqueue it }
if IsComponentSelected('src') and not FileExists(FileName) then
begin
idpAddFile(
'https://example.com/files/prj-sources-1.2.3.zip',
FileName);
end;
end;
end;
关于inno-setup - 检查先前是否在 Inno Setup 中下载过组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22114401/
前文链接: Spring复杂的BeanFactory继承体系该如何理解? ----上 Spring复杂的BeanFactory继承体系该如何理解? ----中 Spring IoC容器 Applica
我正在努力实现这个目标 | Div | |Div nav wrapper| | logo | |con
我正在尝试从下拉菜单中的链接进行模式启动。模态似乎启动了(网站变灰),但看不到。来自不在下拉列表中的常规链接的模式工作得很好。我愚弄了 jquery,但由于我是 jquery 的新手,所以没有任何结果
我是一名优秀的程序员,十分优秀!