gpt4 book ai didi

c# - Windows Azure 访问 App_Data

转载 作者:太空狗 更新时间:2023-10-29 20:13:36 25 4
gpt4 key购买 nike

我需要将文件写入 Asp.Net MVC 项目中的 App_Data 文件夹。它可以在本地运行,但是当我将其部署到 Windows Azure 时,我收到了如下错误:

Could not find a part of the path 'C:\DWASFiles\Sites\codehint\VirtualDirectory0\site\wwwroot\App_Data\text.txt'.

I need to use third party library that have to get read/write access to App_Data folder.

I use code like this:

var path = Server.MapPath("~/App_Data/text.txt");
using (var file = new StreamWriter(path))
{
file.Write("test line");
file.Flush();
}

最佳答案

如果App_Data文件夹为空,则表示尚未部署,因此您需要创建它

看我的回复here

关于c# - Windows Azure 访问 App_Data,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21181428/

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