Interface
IFileInfo

Represents information about a file.

Definition

Namespace:Telerik.Maui.Controls

Assembly:Telerik.Maui.Controls.dll

Syntax:

cs-api-definition
public interface IFileInfo

Properties

FileName

Gets the name of the file.

Declaration

cs-api-definition
string FileName { get; }

Property Value

string

FileSize

Gets the size of the file in bytes.

Declaration

cs-api-definition
long FileSize { get; }

Property Value

long

Methods

OpenReadAsync()

Opens the file for reading.

Declaration

cs-api-definition
Task<Stream> OpenReadAsync()

Returns

Task<Stream>

A stream for reading the file.