資源簡介
非常詳細的C# FTP客戶端實例,內(nèi)含用戶自定義的FTP控件,可嵌入到自己的程序中使用

代碼片段和文件信息
//////////////////////////////////////////////////////////////////////////////
//?This?source?code?and?all?associated?files?and?resources?are?copyrighted?by
//?the?author(s).?This?source?code?and?all?associated?files?and?resources?may
//?be?used?as?long?as?they?are?used?according?to?the?terms?and?conditions?set
//?forth?in?The?Code?Project?Open?License?(CPOL)?which?may?be?viewed?at
//?http://www.blackbeltcoder.com/Legal/Licenses/CPOL.
//
//?Copyright?(c)?2011?Jonathan?Wood
//
using?System;
using?System.Windows.Forms;
namespace?TestFtpClient
{
public?partial?class?Form1?:?Form
{
public?Form1()
{
InitializeComponent();
}
private?void?Form1_Load(object?sender?EventArgs?e)
{
FtpCredentials?frm?=?new?FtpCredentials();
frm.ShowDialog();
ftpClientCtl1.Host?=?Properties.Settings.Default.Host;
ftpClientCtl1.Username?=?Properties.Settings.Default.Username;
ftpClientCtl1.Password?=?Properties.Settings.Default.Password;
ftpClientCtl1.Populate();
}
}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件?????????776??2011-03-09?11:10??Resources\delete.bmp
?????文件?????????822??2011-03-09?18:19??Resources\Document.bmp
?????文件?????????824??2011-03-09?11:10??Resources\DownloadDocument.bmp
?????文件?????????822??2011-03-09?18:16??Resources\Folder.bmp
?????文件?????????824??2011-03-09?10:54??Resources\GoToParentFolder.bmp
?????文件?????????824??2011-03-09?11:10??Resources\NewFolder.bmp
?????文件?????????824??2011-03-09?10:55??Resources\Refresh.bmp
?????文件?????????822??2011-03-09?11:10??Resources\UploadDocument.bmp
?????文件????????1031??2011-03-09?12:43??app.config
?????文件????????1031??2011-03-09?20:28??Form1.cs
?????文件????????2014??2011-03-09?20:28??Form1.Designer.cs
?????文件????????5814??2011-03-09?20:28??Form1.resx
?????文件???????15631??2011-03-09?20:28??FtpClient.cs
?????文件???????14630??2011-03-09?20:28??FtpClientCtl.cs
?????文件???????16837??2011-03-09?19:39??FtpClientCtl.designer.cs
?????文件????????9284??2011-03-09?19:39??FtpClientCtl.resx
?????文件?????????989??2011-03-09?12:56??FtpCredentials.cs
?????文件????????5015??2011-03-09?12:43??FtpCredentials.Designer.cs
?????文件????????5814??2011-03-09?12:43??FtpCredentials.resx
?????文件?????????427??2011-03-08?09:49??Program.cs
?????文件?????????491??2011-01-12?12:20??ReadMe.txt
?????文件????????6665??2011-03-09?20:26??TestFtpClient.csproj
?????文件????????1462??2011-03-08?09:49??Properties\AssemblyInfo.cs
?????文件????????4420??2011-03-09?20:25??Properties\Resources.Designer.cs
?????文件????????7473??2011-03-09?11:10??Properties\Resources.resx
?????文件????????2373??2011-03-09?20:26??Properties\Settings.Designer.cs
?????文件?????????644??2011-03-09?12:43??Properties\Settings.settings
評論
共有 條評論