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!