File: src\Http\WebUtilities\src\AspNetCoreTempDirectory.cs
Web Access
Project: src\src\Http\Http\src\Microsoft.AspNetCore.Http.csproj (Microsoft.AspNetCore.Http)
// 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;
}