Nick.Mc
Nick.Mc

Reputation: 19184

How do I create a subfolder in Azure functions

I'm following this guide

https://sqldusty.com/2017/06/21/how-to-automate-processing-of-azure-analysis-services-models/

In step 4. Configure the Function App, we need to create a subfolder called bin

Select your function, TimerTriggerCSharp1, and expand the View files windows on the far right of your screen.

Here you need to add a folder called “bin”. Click Add to do this.

When I click "add", it adds a file, not a folder. What am I missing>?

enter image description here

EDIT:

In the end I kept getting inconsistent assembly errors, and easily hit the 5 minute timeout limitation. So I looked into Azure Automation instead. This appears to be a much simpler way to achieve what I need. I'm just having difficulty with the scheduling now

Upvotes: 1

Views: 1633

Answers (2)

Mikhail Shilkov
Mikhail Shilkov

Reputation: 35124

You may want to try using precompiled Functions with new VS2017 15.3 tooling. Then you won't have to create any folders manually, just reference the NuGet packages that you need.

Upvotes: 0

Nick.Mc
Nick.Mc

Reputation: 19184

OK, everyone forgets to mention that the thing you add should be named

bin\

not

bin

Upvotes: 1

Related Questions