An Azure service that provides an event-driven serverless compute platform.
Hi @AzeemK ,
Thank you for posting your query in Microsoft Q&A Platform.
You can achieve your requirement either using ADF or using Azure Function App.
Requirement 1: Rename file name on ADLS Gen2
- Using Azure Data Factory Pipeline
- Make API call to ADLS Gen2 using web activity. This API of ADLS Gen2 helps you to rename file name.
- Have PowerShell code to rename file on ADLS Gen2 and execute that using Custom Activity. Click here for documentation of PowerShell library - Using Azure Functions
- Have Python or C# or PowerShell code to make REST API call to ADLS Gen2 to rename file.
Requirement 2: Replace some characters inside file
- Using Azure Data Factory Pipeline
- You need to consider data flows inside ADF to perform this transformation. replace() function will help to achieve this.
- You can consider REST API call to ADLS Gen2 as well, to update file. - Using Azure Functions
- You can write your own code in Python or C# or PowerShell to make REST API call to ADLS Gen2 to update file.
Click here for Azure data lake Gen2 REST APIs documentation.
Click here to Azure data lake Gen2 PowerShell library documentation.
Hope this will help. Please let us know if any further queries. Thank you.
----------------------
Please do consider clicking on "Accept Answer" and "Up-vote" on the post that helps you, as it can be beneficial to other community members
button. Please let us know if any further queries. Thank you.