_blobFind
Documentation: _blobFind
Function
_blobFind
function searches for blobs (files) in an Azure Blob Storage container that match a specified prefix. This function returns a JSON-serialized list of blob names that start with the given prefix. Before using this function, ensure that you have established a connection to Azure Blob Storage using the _blobConnect
function.Function Signature:
Parameters:
prefix
:string
Return Value:
string
Function Workflow:
1.
_blobConnect
has been called successfully to establish a connection to Azure Blob Storage and specify the container. This function depends on an active connection to function correctly.2.
prefix
.3.
4.
Example Usage:
Important Considerations:
_blobConnect
has been successfully called before using _blobFind
. The function relies on an established connection to perform the search.prefix
parameter must be specified accurately to filter blobs effectively. Ensure that the prefix matches the beginning of the blob names you are searching for._blobFind
, you can efficiently locate and retrieve a list of blobs in Azure Blob Storage that match a specific naming pattern, facilitating organized file management.Modified at 2024-08-23 12:41:10