Hello @carom-9728
You can use Managed Identity to link Azure Function with Azure Blob storage. You need to enabled Managed Identity in Azure Functions and give it permissions in Azure Storage Account(select the role “Storage Blob Data Contributor” for example).
http://www.klaushaller.net/?p=1312
After that you will be able to download file in code(.Net example):
var myBlobUrl = " https://<account-name>.blob.core.windows.net/<path_to_file_location>/<name_of_uploaded_file>";
BlobClient bc = new BlobClient(new Uri(myBlobUrl), myCredentials);
log.LogInformation("**2**");
BlobDownloadResult downloadResult = await bc.DownloadContentAsync();
string downloadedData = downloadResult.Content.ToString();