How to do that?
Hi @Filipe Lourenço,
Install the Azure Blob Storage Connector:
Copy the Blob to a New Name:
Delete the Original Blob:
Step-by-Step Example
Let’s say you have a blob named oldFileName.txt and you want to rename it to newFileName.txt.
1. Set Up the Azure Blob Storage Configuration
2. Copy the Blob to a New Name
outsystemsCopy code// Use the AzureBlobStorage_CopyBlob actionAzureBlobStorage_CopyBlob( SourceBlobPath: "oldFileName.txt", // Original blob path DestinationBlobPath: "newFileName.txt" // New blob path)
3. Delete the Original Blob
outsystemsCopy code// Use the AzureBlobStorage_DeleteBlob actionAzureBlobStorage_DeleteBlob( BlobPath: "oldFileName.txt" // Original blob path to delete)