
ftp
yyf_ad
这个作者很懒,什么都没留下…
展开
-
ftp download
public static bool DownloadFileFromServer(Uri serverUri, string localFileName){ // The serverUri parameter should start with the ftp:// scheme. if (serverUri.Scheme != Uri.UriSchemeFtp) {转载 2012-03-21 01:49:31 · 883 阅读 · 0 评论 -
什么是ftp的主动模式和被动模式
http://www.cnblogs.com/zhouqianhua/archive/2011/02/15/1955353.htmlFTP两种工作模式:主动模式(Active FTP)和被动模式(Passive FTP) 在主动模式下,FTP客户端随机开启一个大于1024的端口N向服务器的21号端口发起连接,然后开放N+1号端口进行监听,并向服务器发出转载 2012-04-07 15:49:50 · 443 阅读 · 0 评论 -
图解Windows xp—FTP服务器配置
http://news.newhua.com/news1/Skills_System/2010/69/1069143725350AI03C55625ICHDBEIGAHD798IKJ0I7AA7AE6J3G39F.htmlFTP是File Transport Protocol的简称,其作用是使连接到服务器上的客户可以在服务器和客户机间传输文件。除WWW服务外,FTP也算是使用最广泛的一种服转载 2012-03-20 23:36:48 · 967 阅读 · 0 评论 -
ftp upload
public void Upload3(string path,string filename) { FtpWebRequest ftpWebRequest = (FtpWebRequest)WebRequest.Create("ftp://ftpserver/" + filename); ftpWebRequest.Method =原创 2012-04-07 11:23:57 · 915 阅读 · 0 评论 -
about ftp url
Hello, I found the solution. The problem is the Current Working Directory of the ftp user. If you type a url like ftp:///path/test.txt it is used as a relative path ro the working directory. For e转载 2012-04-10 00:33:12 · 592 阅读 · 0 评论 -
ftp diff between .net3.5 and .net4.0
symptoms:When using System.Net.FtpWebRequest class on .Net Framework 4 to perform the FTP STOR/RETR command, the class throws a FTP error 5xx, for example: "501 Syntax error - sender/receive转载 2012-04-10 22:42:31 · 722 阅读 · 0 评论 -
Security issues in FTP
http://www.raditha.com/php/ftp/security.phpSend your password in clear textThe biggest problem with FTP is that the server can only handle usernames and passwords in plain text. This is one转载 2012-04-10 23:14:05 · 442 阅读 · 0 评论 -
FTP Status and Error Codes
http://help.globalscape.com/help/cuteftp8/numbered_ftp_status_and_error_codes.htmFTP Status and Error CodesCuteFTP displays FTP status codes in the log window. The codes are numbered according to转载 2012-11-15 11:16:44 · 1323 阅读 · 0 评论