how much local disk is available in an Azure Function execution context

Viewed 7038

How much LOCAL DISK is available to a single execution of an Azure Function.

According to this issue https://github.com/Azure/Azure-Functions/issues/179, the locations D:\local and the HOME environment variable should be writable.

I want to know how much space is available for each function to work with, or what the recommended strategy for using System.IO based file writes are for temporary files.

2 Answers
Related