1
votes

We have email templates as .cshtml file format in under the Content/Templates folder. We read that template using File.ReadAllText() then apply our model value then send that mail to the particular user. It works fine in locally hosted machine. When I host my asp.net mvc app in Azure App service file not found exception throws.

private string GetTemplateContent(string templatePath)
    {
        var templateContent = string.Empty;
        var path = GetAbsoluteTemplatePath(templatePath);

        try
        {
            templateContent = File.ReadAllText(Path.GetFullPath(path));
        }
        catch (Exception ex)
        {
            Log exception
        }

        return templateContent;
    }

Path in Azure "D:\home\site\wwwroot\Content\Templates\ScheduleTemplate.cshtml"

I ensured file exist in that location.

Can you help me why this is happening?

1
can you share in info about what GetAbsoluteTemplatePath and Path.GetFullPath is return?Jatin Parmar
@JatinParmar templatePath = "~/Content/Templates/ScheduleTemplate.cshtml" GetAbsoluteTemplatePath returns D:\home\site\wwwroot\/Content/Templates/ScheduleTemplate.cshtm_l Path.GetFullPath returns _D:\home\site\wwwroot\Content\Templates\ScheduleTemplate.cshtmlRajadurai Azhagudurai
Start by making sure it works correctly locally, by following this documentDavid Ebbo
According to exception, it indicates that file is not existed. You also could remote debug it and use kudu to check file again.Tom Sun - MSFT
Ensured file exist @TomSun Same method have 3 lines of code, first one to read file next line write new file then 3rd read that newly written file Result : 3rd line file not found exceptionRajadurai Azhagudurai

1 Answers

4
votes

This is Azure App service issue. From this Thread we found the solution. Add node in Application Setting

Key: WEBSITE_DYNAMIC_CACHE (all capitals) Value: 0