我在将 FileStream 复制到 HttpPostedFileBase 时遇到问题。我的代码是这样的。
HttpPostedFileBase postedFile = null;
FileStream f = new FileStream(Server.MapPath("Path"), FileMode.Open, FileAccess.Read);
postedFile.InputStream.CopyTo(f);
f.Close();
但是,我可以读取文件,但尝试将 f 复制到postedFile 时出错。如果我做错了或此代码块中有任何问题,请纠正我。此外,我得到了这个例外:
“System.NullReferenceException:对象引用未设置为对象的实例。”
提前致谢!