WebScraper.DownloadFileUnique Method

IronWebScraper

WebScraperDownloadFileUnique Method

Much like DownloadFile except if the file has already been downloaded or exists locally, it will not be re-downloaded.

Requests a file to be downloaded from the given Url to the local file-system. Often used for scraping documents, assets and images.

Normally called with an Parse Method of IronWebScraper.WebScraper

Namespace:  IronWebScraper
Assembly:  IronWebScraper (in IronWebScraper.dll) Version: 4.0.4.25470 (4.0.4.3)
Syntax
public virtual string DownloadFileUnique(
	string url,
	string path,
	HttpIdentity identity = null
)
Public Overridable Function DownloadFileUnique ( 
	url As String,
	path As String,
	Optional identity As HttpIdentity = Nothing
) As String

Parameters

url
Type: SystemString
The URL.
path
Type: SystemString
The path.
identity (Optional)
Type: IronWebScraperHttpIdentity
The identity.

Return Value

Type: String
See Also