Reputation: 53231
In Visual Studio 2013, I can go to Server Explorer, expand the Azure > Websites node and browse my websites. Is it also possible to download the files somehow from this panel? E.g., I am interested in my ELMAH logs inside App_Data and would like to download them from within Visual Studio.
Upvotes: 0
Views: 1389
Reputation: 4520
View only from Visual Studio 2015 | View | Server Explorer.
To download files and log streams etc. use Kudu.
https://.scm.azurewebsites.net/
To download web site files. Kudu | Debug console | CMD, click on site, click on wwwroot, click on the downloadArrow Icon on the left of the wwwroot folder - or a log file or log folder of your choosing.
Upvotes: 1
Reputation: 5496
You can only view file contents from the remote server but cannot download. See here: http://azure.microsoft.com/en-us/documentation/articles/web-sites-dotnet-troubleshoot-visual-studio/#remoteview
It may be that you can view the ELMAH log if it's recognised by Visual Studio, otherwise I'd recommend looking at writing your ELMAH log to SQL Server instead.
Upvotes: 0