<PackageReference Include="Microsoft.Extensions.FileProviders.Abstractions" Version="11.0.0-preview.1.26104.118" />

Microsoft.Extensions.FileProviders.IFileInfo

public interface IFileInfo
Represents a file in the given file provider.
namespace Microsoft.Extensions.FileProviders { public interface IFileInfo { bool Exists { get; } long Length { get; } string PhysicalPath { get; } string Name { get; } DateTimeOffset LastModified { get; } bool IsDirectory { get; } Stream CreateReadStream(); } }