gpt4 book ai didi

c# - MVC3 应用程序 : What folder to use for saving files on the server?

转载 作者:太空宇宙 更新时间:2023-11-03 14:00:58 25 4
gpt4 key购买 nike

我有一个应用程序 MVC3 应用程序。我想记录各种事情,比如提交特定表单时,为了避免写入数据库,我想在 xml 文件中记录详细信息。

问题是我应该使用哪个文件夹,我看到的一些示例建议使用 App_Data 文件夹。对于最少的问题,标准或建议是什么?

所以我用这个:

// Create a new XmlSerializer instance with the type of the test class
var serializerObj = new XmlSerializer(typeof(CourseApplicationVM));
// Create a new file stream to write the serialized object to a file

var filename = string.Format("{0}-{1}-{2}{3}", "CourseApp",
viewModel.Course.Code + viewModel.Applicant.Name, DateTime.Now.Ticks, ".xml");
var filepath = Path.Combine(Server.MapPath("~/App_Data/Log"), filename);

TextWriter writeFileStream = new StreamWriter(filepath);
serializerObj.Serialize(writeFileStream, viewModel);
// Cleanup
writeFileStream.Close();

它在本地工作正常,但发布到服务器时就不行了。查看文件夹结构就不足为奇了,因为它在发布时甚至没有 App_Data 文件夹。导致此错误:

Could not find a part of the path 'C:\inetpub\wwwroot\MyApplication\App_Data\Log\CourseApp-0385JoeBloggs-634734549879496695.xml'. 

Exception Details: System.IO.DirectoryNotFoundException: Could not find a part of the path 'C:\inetpub\wwwroot\MyApplication\App_Data\Log\CourseApp-0385JoeBloggs-634734549879496695.xml'.

为什么没有那个文件夹(不应该发布)?保存这些东西的正常位置是什么?

谢谢,大卫

最佳答案

右键单击文件夹并在上下文菜单中选择“包含在项目/解决方案中”

确保您对文件夹的权限已相应设置。

关于c# - MVC3 应用程序 : What folder to use for saving files on the server?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10735439/

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