我是 ASP.NET 网络应用程序的新手,我遇到了这个问题。
我有一个页面,其中有一个按钮来下载以前存储在 SharePoint 页面中的 template.xls。我有下载方法,它工作得很好。有问题的模板被保存在我的本地 IIS 上,我的 Web 应用程序所在的文件夹中。问题是向最终用户打开这个文件。我需要向用户显示一个弹出窗口,以便他可以打开/保存此 template.xls 我正在使用以下内容:
//path on my local IIS where the file is located after the download
string _strFolderApp = "~/Arq/";
string _strFullFolderApp = _strFolderApp + _strFileName;
string apPath = System.Web.Hosting.HostingEnvironment.MapPath(_strFullFolderApp);
FileStream _FileStream = new FileStream(apPath, FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite);
// Writes a block of bytes to this stream using data from a byte array.
_FileStream.Write(_contentFile, 0, _contentFile.Length);
//opens the file
Response.Clear();
Response.AddHeader("content-disposition", "attachment; filename=" + _strFileName);
Response.ContentType = "";
Response.TransmitFile(apPath);
Response.Flush();
File.Delete(apPath);
Response.End();
# endregion
// close file stream
_FileStream.Close();
我在网上搜索,所有答案最终都使用 FileShare.ReadWrite,所以这两个过程都可以正常工作。但这对我不起作用,因为当代码到达Response.TransmitFile(apPath); 我得到一个异常并且没有显示弹出窗口。例外 :
该进程无法访问文件 'c:\inetpub\wwwroot\MyWebApp\File\TemplateSharePoint.xlsx',因为它正被另一个进程使用。
请任何帮助将不胜感激:)
编辑 代码更新
if (_flgSPSDownload)
{
System.IO.FileStream _FileStream = new System.IO.FileStream(apPath,System.IO.FileMode.Create, System.IO.FileAccess.Write);
_FileStream.Write(_contentFile, 0, _contentFile.Length);
_FileStream.Close();
Response.Clear();
Response.AddHeader("content-disposition", "attachment; filename=" + _strFileName);
//Set the appropriate ContentType.
Response.ContentType = "Application/x-msexcel";
Response.TransmitFile(apPath);
Response.Flush();
//Write the file directly to the HTTP content output stream.
Response.WriteFile(apPath);
//File.Delete(apPath);
//Process.Start(_strDestinationPath + "//" + _strFileName);