|
|
|
| acHTTP component.
|
| property OutputFileName: String;
|
| The OutputFileName property specifies the target filename for downloaded resource. If the OutputFileName specified, the acHTTP uses the TFileStream instead of TMemoryStream as the storage for downloaded data.
|
|
|
|
|
| If you would like to hide the file with downloaded data from the file system use HideOutputFile property.
|
| acHTTP1.URL := 'http://www.domain.com/filename.zip';
|
| acHTTP1.OutputFileName := 'c:\filename.zip';
|
| acHTTP.Read;
|
| HideOutputFile property;
|
| OnDone event and Read method.
|