TIdHTTP get下载文件
Posted 西瓜的夏天
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TIdHTTP get下载文件相关的知识,希望对你有一定的参考价值。
function Tform1.DownConfigreFile(var errmsg: string; url, name: string): boolean; var MyStream: TMemoryStream; begin Result := true; MyStream := TMemoryStream.Create; try try httpUpdate.Get(url + name, MyStream); MyStream.SaveToFile(ExtractFilePath(Application.exename) + name); except on e: Exception do begin errmsg := e.Message; // 返回错误信息 Result := false; end; end; finally MyStream.Free; end; end;
以上是关于TIdHTTP get下载文件的主要内容,如果未能解决你的问题,请参考以下文章