|
WebDataSetDownload Method (String, String, String)
|
Downloads a file from the specified url,
storing in localPath, under name uncompressedFileName.
Namespace:
Accord.DataSets.Base
Assembly:
Accord.DataSets (in Accord.DataSets.dll) Version: 3.8.0
Syntax public static bool Download(
string url,
string localPath,
out string uncompressedFileName
)
Public Shared Function Download (
url As String,
localPath As String,
<OutAttribute> ByRef uncompressedFileName As String
) As Boolean
Request Example
View SourceParameters
- url
- Type: SystemString
The URL where the file should be downloaded from. - localPath
- Type: SystemString
The path where the file will be stored localy. - uncompressedFileName
- Type: SystemString
The generated name of the uncompressed file.
Return Value
Type:
Booleantrue if the download succeeded,
false otherwise.
See Also