@Hanna Fredericks Are you referring to the Blob container renaming, If so you can perform through Azure Storage Explorer tool
You can also refer to the suggestion mentioned in the SO thread
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello,
i have tried it for hours.
How can I rename a blob that has just been loaded into the blobstorage. I created a blobstorage trigger and this is ok but but then renaming the file doesn't work. How can i do that. Du you know a simple example about this?
namespace FunctionApp2
{
public static class Function1
{
[FunctionName("Function1")]
public static void Run([BlobTrigger("dev/{name}", Connection = "")]Stream myBlob, string name, ILogger log)
{
log.LogInformation($"C# Blob trigger function Processed blob\n Name:{name} \n Size: {myBlob.Length} Bytes");
}
}
}
Thanks for every help
Ciao Hanna
@Hanna Fredericks Are you referring to the Blob container renaming, If so you can perform through Azure Storage Explorer tool
You can also refer to the suggestion mentioned in the SO thread