using System; using System.Web; using BP.Difference; namespace BP.WF.Difference { public class WF_File { /// /// 文件上传 /// /// public static void UploadFile(string filePath) { try { HttpFileCollection filelist = HttpContextHelper.Current.Request.Files; if (filelist == null || filelist.Count == 0) { throw new NotImplementedException("没有上传文件"); } HttpPostedFile f = filelist[0]; // 写入文件 f.SaveAs(filePath); } catch (Exception ex) { throw new NotImplementedException(ex.Message); } } /// /// 获取文件 /// /// public static HttpPostedFile GetUploadFile(int index=0) { try { HttpFileCollection filelist = HttpContextHelper.Current.Request.Files; if (filelist == null || filelist.Count == 0) { throw new NotImplementedException("没有上传文件"); } return filelist[index]; } catch (Exception ex) { throw new NotImplementedException(ex.Message); } } public static HttpFileCollection GetUploadFiles() { try { HttpFileCollection filelist = HttpContextHelper.Current.Request.Files; if (filelist == null || filelist.Count == 0) { throw new NotImplementedException("没有上传文件"); } return filelist; } catch (Exception ex) { throw new NotImplementedException(ex.Message); } } public static void UploadFile(HttpPostedFile file,string filePath) { try { // 写入文件 file.SaveAs(filePath); } catch (Exception ex) { throw new NotImplementedException(ex.Message); } } public static long GetFileLength(HttpPostedFile file) { try { return file.ContentLength; } catch (Exception ex) { throw new NotImplementedException(ex.Message); } } } }