AzureStor - Date Modified?

Morning,

I have a simple csv download from Blob Storage using the AzureStor package.

AzureStorageKey <- storage_endpoint("URL HERE", 
                                    key="A KEY HERE")

Container  <- storage_container(AzureStorageKey, "FILE HERE")
storage_download(Container, 'File.csv',

Whilst this works great, I now need to add a column to this CSV with the date modified for reporting purposes.

Does anyone have any good suggestions?

Thank you!

You can't append a column to a structured file just like that. A blob is just a bag of bytes; the blob storage API doesn't know or care what it contains. Download the file, load it into your program of choice, add the column, and upload it again.

1 Like

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.