我在 C# MVC 应用程序中有一个函数,它创建一个临时目录和一个临时文件,然后使用 FileStream 打开文件,将 FileStream 返回给调用函数,然后需要删除临时文件。但是,我不知道如何删除临时目录和文件,因为它总是出错说“该进程无法访问该文件,因为它正在被另一个进程使用。” 这是我尝试过的,但 FileStream 仍在 finally 块中使用临时文件。如何返回 FileStream 并删除临时文件?
public FileStream DownloadProjectsZipFileStream()
{
Directory.CreateDirectory(_tempDirectory);
// temporary file is created here
_zipFile.Save(_tempDirectory + _tempFileName);
try
{
FileStream stream = new FileStream(_tempDirectory + _tempFileName, FileMode.Open);
return stream;
}
finally
{
File.Delete(_tempDirectory + _tempFileName);
Directory.Delete(_tempDirectory);
}
}
FileStream 返回的函数如下所示:
public ActionResult DownloadProjects ()
{
ProjectDownloader projectDownloader = new ProjectDownloader();
FileStream stream = projectDownloader.DownloadProjectsZipFileStream();
return File(stream, "application/zip", "Projects.zip");
}
更新:我忘了提到 zip 文件是 380 MB。使用 MemoryStream 时出现系统内存不足异常。