File: AspNetCoreTempDirectory.cs
Web Access
Project: src\src\aspnetcore\src\Http\WebUtilities\src\Microsoft.AspNetCore.WebUtilities.csproj (Microsoft.AspNetCore.WebUtilities)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

#nullable enable

namespace Microsoft.AspNetCore.Internal;

internal static class AspNetCoreTempDirectory
{
    private static string? _tempDirectory;

    public static string TempDirectory
    {
        get
        {
            if (_tempDirectory == null)
            {
                // Look for folders in the following order.
                var temp = Environment.GetEnvironmentVariable("ASPNETCORE_TEMP") ?? // ASPNETCORE_TEMP - User set temporary location.
                           Path.GetTempPath();                                      // Fall back.

                if (!Directory.Exists(temp))
                {
                    throw new DirectoryNotFoundException(temp);
                }

                _tempDirectory = temp;
            }

            return _tempDirectory;
        }
    }

    public static Func<string> TempDirectoryFactory => () => TempDirectory;
}