我正在将我的网站部署到 Azure 网站。我需要在后面的代码中使用特殊的文件类型,这在我的开发机器上工作,但是当我部署到 Azure 时找不到文件?
var real_File = HttpContext.Current.Server.MapPath("~/FolderName/Filename.w00");
if (File.Exists(real_file))
{
lblStatus.Text = "File exists.";
}
else
{
lblStatus.Text = "File could not be found.";
}
我必须在 Azure 中配置什么才能使其正常工作吗?