Edit

Share via


CompositeFileProvider.GetFileInfo(String) Method

Definition

Locates a file at the given path.

public:
 virtual Microsoft::Extensions::FileProviders::IFileInfo ^ GetFileInfo(System::String ^ subpath);
public Microsoft.Extensions.FileProviders.IFileInfo GetFileInfo (string subpath);
abstract member GetFileInfo : string -> Microsoft.Extensions.FileProviders.IFileInfo
override this.GetFileInfo : string -> Microsoft.Extensions.FileProviders.IFileInfo
Public Function GetFileInfo (subpath As String) As IFileInfo

Parameters

subpath
String

The path that identifies the file.

Returns

The file information.

Implements

Remarks

The caller must check the Exists property. This method returns the first existing IFileInfo returned by the provided IFileProvider, or a NotFoundFileInfo if no existing files are found.

Applies to