3

我是 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);
4

2 回答 2

1

据我所知,您正在打开文件流,然后尝试再次打开它,然后再关闭它。

文件的初始打开:

FileStream _FileStream = new FileStream(apPath, FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite);

Response.TransmitFile(apPath); 

似乎正在尝试再次打开文件。

我建议打电话

_FileStream.Close();

打电话之前TransmitFile

于 2012-11-08T21:13:09.667 回答
0

我已经用另一种方式解决了这个问题

我打开窗口任务管理器,发现我的项目的 dll 文件正在运行

倍数(我的意思是它的副本存在)我删除它们,然后我的问题就解决了

于 2013-11-25T05:15:51.127 回答