StorageProviderExtensionsTryGetFolderFromPathAsync Method
Attempts to read folder from the file-system by its path.
Namespace: Avalonia.Platform.StorageAssembly: Avalonia.Base (in Avalonia.Base.dll) Version: 11.3.999
public static Task<IStorageFolder?> TryGetFolderFromPathAsync(
this IStorageProvider provider,
string folderPath
)
<ExtensionAttribute>
Public Shared Function TryGetFolderFromPathAsync (
provider As IStorageProvider,
folderPath As String
) As Task(Of IStorageFolder)
[<ExtensionAttribute>]
static member TryGetFolderFromPathAsync :
provider : IStorageProvider *
folderPath : string -> Task<IStorageFolder>
- provider IStorageProvider
-
- folderPath String
- The path of the folder to retrieve in Uri format.
TaskIStorageFolderFolder or null if it doesn't exist.In Visual Basic and C#, you can call this method as an instance method on any object of type
IStorageProvider. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
Uri path is usually expected to be an absolute path with "file" scheme.
But it can be an uri with "content" scheme on the Android.
It also might ask user for the permission, and throw an exception if it was denied.