c#中Filedownloader的程序集引用是什么?
我正在寻找将文件从ftp下载到我的本地驱动器'c',
代码:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Configuration;
using System.Data;
using System.Data.SqlClient;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
FileDownloader f = new FileDownloader();
我应该为filedownloader添加哪个引用?
答案 0 :(得分:1)
我想您正在尝试从FTP下载文件,而您不必使用FileDownloader
类。
您可以使用此链接,例如:“http://msdn.microsoft.com/en-us/library/ms229711(v=vs.110).aspx”。
你也可以使用开源来做这件事,试着看看这个链接:“http://www.codeproject.com/Tips/443588/Simple-Csharp-FTP-Class”
有一个使用简单的例子(来自上面的链接):
ftp ftpClient = new ftp(@"ftp://10.10.10.10/", "user", "password");
ftpClient.download("etc/test.txt", @"C:\Users\metastruct\Desktop\test.txt");