ListDirectoriesAndFiles

Returns a list of files or directories under the specified share or directory. It lists the contents only for a single level of the directory hierarchy.

Properties

Azure Storage Credential

  • Account Name - The name of your Azure storage account.
  • Access Key - Your Azure account access key.
  • EndpointSuffix - To create a connection string for a storage service in a specific region.
  • BlobStorageUri - The Uri to the location of the Blob storage you want to access.
    • PrimaryUri and SecondaryUri settings available
  • FileStorageUri - The Uri to the location of the File storage you want to access.
    • PrimaryUri and SecondaryUri settings available
  • TableStorageUri - The Uri to the location of the Table storage you want to access.
    • PrimaryUri and SecondaryUri settings available
  • QueueStorageUri - The Uri to the location of the Queue storage you want to access.
    • PrimaryUri and SecondaryUri settings available

Share name

The name of your file share.

Directory path

The name or path of the directory. For example, for subdirectory2 existing in subdirectory in maindirectory, the directory path is maindirectory/subdirectory/subdirectory2. If not specified, contents of the root directory are returned.

Prefix

A string containing the file or directory name prefix. If specified, only directories and files starting with this prefix will be returned.

Results loop

If checked, a result loop will iterate through the file items one by one, otherwise a list of all the file items will be returned.


Please refer to the following Azure API reference documentation:

Configure Azure Storage connection strings:

https://docs.microsoft.com/en-us/azure/storage/common/storage-configure-connection-string

https://docs.microsoft.com/en-us/dotnet/api/microsoft.azure.storage.auth.storagecredentials.-ctor?view=azure-dotnet#Microsoft_Azure_Storage_Auth_StorageCredentials__ctor_System_String_System_String_

https://docs.microsoft.com/en-us/dotnet/api/microsoft.azure.storage.cloudstorageaccount.-ctor?view=azure-dotnet#Microsoft_Azure_Storage_CloudStorageAccount__ctor_Microsoft_Azure_Storage_Auth_StorageCredentials_System_String_System_Boolean_

https://docs.microsoft.com/en-us/dotnet/api/microsoft.azure.storage.cloudstorageaccount.-ctor?view=azure-dotnet#Microsoft_Azure_Storage_CloudStorageAccount__ctor_Microsoft_Azure_Storage_Auth_StorageCredentials_Microsoft_Azure_Storage_StorageUri_Microsoft_Azure_Storage_StorageUri_Microsoft_Azure_Storage_StorageUri_Microsoft_Azure_Storage_StorageUri_

Documentation to assist in setting properties:

https://docs.microsoft.com/en-us/dotnet/api/microsoft.azure.storage.file.cloudfiledirectory.listfilesanddirectories?view=azure-dotnet#Microsoft_Azure_Storage_File_CloudFileDirectory_ListFilesAndDirectories_System_String_Microsoft_Azure_Storage_File_FileRequestOptions_Microsoft_Azure_Storage_OperationContext_

https://docs.microsoft.com/en-us/dotnet/api/microsoft.azure.storage.file.cloudfileclient.getsharereference?view=azure-dotnet

https://docs.microsoft.com/en-us/dotnet/api/microsoft.azure.storage.file.cloudfiledirectory.getdirectoryreference?view=azure-dotnet