Forum Discussion

Chandan's avatar
Chandan
New Contributor III
4 years ago
Solved

Creating a zip folder in Azure blob storage

I have a requirement where i receive a request with path to many documents which are stored in Azure. My goal is to copy all these files to a temp folder in Azure and then zip it. ( I am not able to ...
  • tlikarish's avatar
    7 years ago

    Are you seeing any error messages when you run the pipeline? If not, this seems like there may be a bug that needs to get fixed.

    The Date.now() function will write out the local date and time in the format YYYY-MM-DDTHH:mm:ss.SSS. Sometimes colon characters are not allowed in file names, so maybe it’s that? You could try changing the expression to

    “sftp://zing.grouponinc.net/Workday/Completed/workday_integration” + Date.now().toString().replaceAll(":", "_") + ".csv"

    Or something similar and try to see if that works.