urlPath := GetAccountSharedResource() + '/' + GetAdditionalFolderPath + '?comp=list'; CanonicalizedResource := StrSubstNo('/%1/%2', GetAccountName(), urlPath);
urlPath := GetAccountSharedResource() + '/' + GetAdditionalFolderPath + '?comp=list&restype=directory'; CanonicalizedResource := ConvertStr(StrSubstNo('/%1/%2', GetAccountName(), urlPath), '?=&', cha + ':' + cha);
Answers
but it keep get me the authentication error
I have not done it myself but MS have created a Tech samle to communicate with Azure Storage.
Perhaps this can help you:
https://github.com/microsoft/BCTech/tree/master/samples/AzureStorage
thanks for the link.
but i think this one is only for blob storage.
actually i need for file storage
You need to change these two lines:
With these:
And you get back and XML with the information.
Regards
perfect !
Thank you so much
are we able to move the file after successfully imported ?
like for example this TestFile.csv
once imported then it should be moved to History folder.
I haven't seen any method to move a file, so I think that you need delete the imported file and create a new one in the destination folder.
Regards.
yeah i managed to solve this issue.
recreate the file to another folder
and then delete this file
thx