Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# ftp file download

WebClient client = new WebClient();
client.Credentials = new NetworkCredential("username", "password");
client.DownloadFile(
    "ftp://ftp.example.com/remote/path/file.zip", @"C:localpathfile.zip");
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #ftp #file #download
ADD COMMENT
Topic
Name
4+2 =