12 2011 档案
摘要:功能:下载文件。方式:调用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) ...
阅读全文