.Net提供了FtpWebRequest类,代码如下: using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using UnityEngine; /// <summary> /// 与 ftp 服务器通信的类 /// </summary> public static class FtpHelper { const int MaxRe
这里介绍的是一种利用WebClient手动发送Stream到服务器页面的上传文件方法. 一.服务器接收文件 这里使用一个ASHX页面来接收和保存Silverlight传来的Stream,页面代码如下: using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Web; namespace Silverlight { /// <summary> /// File
控制台应用程序 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; using System.Diagnostics; namespace test3 { class Program { static void Main(string[] args) { bool status = false; //连接共享目录 status = connec