从网络上下载文件的两种方式
Delphi 编程,从网络上下载文件,我一般用 UrlDownloadToFile 函数,简单,方便。
function DownloadFile(const strURL, strDownFileName: string): Boolean;
begin
try
Result := UrlDownloadToFile(nil, PChar(strURL), PChar(strDownFileName), 0, nil) = 0;
except
Res
原创
2021-01-23 00:14:30 ·
1239 阅读 ·
6 评论