File.Create(System.Web.HttpContext.Current.Server.MapPath(fileName))
这样能够成功创建文件,但文件却会导致占用状态,而无法被其它程序使用写入.
更正如下
using (FileStream fs=File.Create(System.Web.HttpContext.Current.Server.MapPath(fileName)))
{
//更加代码}
File.Create(System.Web.HttpContext.Current.Server.MapPath(fileName))
这样能够成功创建文件,但文件却会导致占用状态,而无法被其它程序使用写入.
更正如下
using (FileStream fs=File.Create(System.Web.HttpContext.Current.Server.MapPath(fileName)))
{
//更加代码}