Home > Blockchain >  Azure data factory sftp
Azure data factory sftp

Time:09-17

I have copied the file from an sFTP loc which is a zip file and in zip, I have CSV format but when the file came to azure blob but the file extension came as .zip.txt can someone suggest how this is happening and how can I get CSV as it is.

CodePudding user response:

Have you tried using the "compression type" option?

enter image description here

enter image description here

This will work for legacy zip. If the zip is with AES encryption or with a password, you will need a custom activity and do the unzipping using an Azure function with some code inside.

  • Related