You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Awaits the user input and picks single file from the file explorer dialog.
30
+
/// </summary>
31
+
/// <param name="filter">The filter to apply when picking files.</param>
32
+
/// <param name="cancellationToken">A <see cref="CancellationToken"/> that cancels this action.</param>
33
+
/// <returns>A <see cref="Task"/> that represents the asynchronous operation. If successful and a file has been picked, returns <see cref="ILocatableFile"/>, otherwise null.</returns>
/// Awaits the user input and picks single folder from the file explorer dialog.
38
+
/// </summary>
39
+
/// <param name="cancellationToken">A <see cref="CancellationToken"/> that cancels this action.</param>
40
+
/// <returns>A <see cref="Task"/> that represents the asynchronous operation. If successful and a folder has been picked, returns <see cref="ILocatableFolder"/>, otherwise null.</returns>
/// <param name="fileName">The name of the file.</param>
17
+
/// <param name="cancellationToken">A <see cref="CancellationToken"/> that cancels this action.</param>
18
+
/// <returns>A <see cref="Task"/> that represents the asynchronous operation. If file is found and access is granted, returns <see cref="IFile"/> otherwise null.</returns>
/// Gets a folder in the current directory by name.
23
+
/// </summary>
24
+
/// <param name="folderName">The name of the folder.</param>
25
+
/// <param name="cancellationToken">A <see cref="CancellationToken"/> that cancels this action.</param>
26
+
/// <returns>A <see cref="Task"/> that represents the asynchronous operation. If folder is found and access is granted, returns <see cref="IFolder"/> otherwise null.</returns>
/// <param name="kind">The type of items to enumerate.</param>
33
+
/// <param name="cancellationToken">A <see cref="CancellationToken"/> that cancels this action.</param>
34
+
/// <returns>Returns an async operation represented by <see cref="IAsyncEnumerable{T}"/> of type <see cref="IStorable"/> of items in the directory.</returns>
0 commit comments