gpt4 book ai didi

c# - 如何在 Microsoft Azure 虚拟服务器上创建和保存临时文件

转载 作者:行者123 更新时间:2023-11-30 22:04:12 24 4
gpt4 key购买 nike

我正在为我的网站使用免费 MS Azure 虚拟网络服务器。

在我的开发计算机上,我可以成功创建 CSV 文件,将其保存到相对临时目录,然后将其下载到浏览器客户端。

但是,当我从 Azure 站点运行它时,出现以下错误:

System.IO.DirectoryNotFoundException: Could not find a part of the path 'D:\home\site\wwwroot\temp\somefile.csv'.

Azure 网站的免费版本是否会阻止我们将文件保存到磁盘?如果没有,我们可以在哪里创建/保存动态生成的文件?

代码示例

private FilePathResult SaveVolunteersToCsvFile(List<Volunteer> volunteers)
{
string virtualPathToDirectory = "~/temp";
string physicalPathToDirectory = Server.MapPath(virtualPathToDirectory);
string fileName = "Volunteers.csv";
string pathToFile = Path.Combine(physicalPathToDirectory, fileName);
StringBuilder sb = new StringBuilder();

// Column Headers
sb.AppendLine("First Name,Last Name,Phone,Email,Approved,Has Background Check");

// CSV Rows
foreach (var volunteer in volunteers)
{
sb.AppendLine(string.Format("{0},{1},{2},{3},{4},{5},{6}",
volunteer.FirstName, volunteer.LastName, volunteer.MobilePhone.FormatPhoneNumber(), volunteer.EmailAddress, volunteer.IsApproved, volunteer.HasBackgroundCheckOnFile));
}

using (StreamWriter outfile = new StreamWriter(pathToFile))
{
outfile.Write(sb.ToString());
}
return File(Server.MapPath(virtualPathToDirectory + "/" + fileName), "text/csv", fileName);
}

最佳答案

确保 ~/temp 文件夹发布到服务器,因为您的发布过程可能不包含它。

关于c# - 如何在 Microsoft Azure 虚拟服务器上创建和保存临时文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25391244/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com