摘要: 功能:下载文件。方式:调用Remoting方法,得到整个文件的字节数组,写到本地文件。代码:public static bool DownloadFromTestPool(string pFileName, string pLocalFullPath){ bool isOk = true; System.IO.FileStream write = null; try { System.IO.FileInfo file = new FileInfo(pLocalFullPath); if (!file.Directory.Exists) ... 阅读全文
posted @ 2011-12-01 23:15 生命体验之kevin-Y 阅读(757) 评论(0) 推荐(0) 编辑