IStorageFolder2.TryGetItemAsync(String) Method

Definition

Try to get a single file or sub-folder from the current folder by using the name of the item.

public:
 IAsyncOperation<IStorageItem ^> ^ TryGetItemAsync(Platform::String ^ name);
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IStorageItem> TryGetItemAsync(winrt::hstring const& name);
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IStorageItem> TryGetItemAsync(string name);
function tryGetItemAsync(name)
Public Function TryGetItemAsync (name As String) As IAsyncOperation(Of IStorageItem)

Parameters

name
String

Platform::String

winrt::hstring

The name (or path relative to the current folder) of the file or sub-folder to try to retrieve.

Returns

When this method completes successfully, it returns the file or folder (type IStorageItem).

Attributes

Applies to

See also