ComponentOne Basic Library for UWP
C1.UWP Assembly / C1.Xaml Namespace / Extensions Class / ContainsFolderAsync Method

In This Topic
    ContainsFolderAsync Method
    In This Topic
    Returns true if a folder contains another folder with the given name
    Syntax
    'Declaration
     
    Public Shared Function ContainsFolderAsync( _
       ByVal folder As Windows.Storage.StorageFolder, _
       ByVal name As System.String _
    ) As System.Threading.Tasks.Task(Of Boolean)
    public static System.Threading.Tasks.Task<bool> ContainsFolderAsync( 
       Windows.Storage.StorageFolder folder,
       System.string name
    )

    Parameters

    folder
    name

    Return Value

    True if the folder contains the folder with given name. False - otherwise
    See Also