본문 바로가기
Delphi Tip/파일

인터넷 URL 문서 저장하기

by MonoSoft 2024. 1. 3.
728x90
반응형

인터넷 URL 문서 저장하기

 

728x90

 

 

 

unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls, URLMon;

type
  TForm1 = class(TForm)
    Button1: TButton;
    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.Button1Click(Sender: TObject);
begin
  URLDownloadToFile(nil, 'http://www.***.html', 'c:\index.html', 0, nil);
end;

end.

 

 

 

728x90
반응형

댓글