GetFolderItemsForPathAsync Method
Overloads
| GetFolderItemsForPathAsync(String) | 
             Returns the files and folders located at a specified path.  | 
        
      
    |
| GetFolderItemsForPathAsync(AsyncHandle, String) | 
             Returns the files and folders located at a specified path.  | 
        
      
    |
| GetFolderItemsForPathAsync<T>(AsyncHandle, Func<Response, T>, String) | 
             Returns the files and folders located at a specified path.  | 
        
      
    
GetFolderItemsForPathAsync(String)
Returns the files and folders located at a specified path.
Declaration
      Task<IEnumerable<FolderItem>> GetFolderItemsForPathAsync([QixName("qPath")] string path)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | path | 
           Absolute or relative path.
                       Relative paths are relative to the default  In Qlik Sense Enterprise: The list is generated by the QRS. The GetDocList method only returns documents the current user is allowed to access. In Qlik Sense Desktop: The apps are located in   | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<FolderItem>> | 
GetFolderItemsForPathAsync(AsyncHandle, String)
Returns the files and folders located at a specified path.
Declaration
      Task<IEnumerable<FolderItem>> GetFolderItemsForPathAsync(AsyncHandle asyncHandle, [QixName("qPath")] string path)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | 
           Handle to asynchronous method request  | 
      
| System.String | path | 
           Absolute or relative path.
                       Relative paths are relative to the default  In Qlik Sense Enterprise: The list is generated by the QRS. The GetDocList method only returns documents the current user is allowed to access. In Qlik Sense Desktop: The apps are located in   | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<FolderItem>> | 
GetFolderItemsForPathAsync<T>(AsyncHandle, Func<Response, T>, String)
Returns the files and folders located at a specified path.
Declaration
      Task<T> GetFolderItemsForPathAsync<T>(AsyncHandle asyncHandle, Func<Response, T> onResult, [QixName("qPath")] string path)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| AsyncHandle | asyncHandle | 
           Handle to asynchronous method request  | 
      
| System.Func<Response, T> | onResult | 
           Continuation function  | 
      
| System.String | path | 
           Absolute or relative path.
                       Relative paths are relative to the default  In Qlik Sense Enterprise: The list is generated by the QRS. The GetDocList method only returns documents the current user is allowed to access. In Qlik Sense Desktop: The apps are located in   | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<T> | 
Type Parameters
| Name | Description | 
|---|---|
| T |