Microsoft.Extensions.FileProviders.NotFoundFileInfo
Represents a nonexistent file.
namespace Microsoft.Extensions.FileProviders
{
public class NotFoundFileInfo : IFileInfo
{
public bool Exists { get; }
public bool IsDirectory { get; }
public DateTimeOffset LastModified { get; }
public long Length { get; }
public string Name { get; }
public string PhysicalPath { get; }
public NotFoundFileInfo(string name);
public Stream CreateReadStream();
}
}