Getting the latest file modified from Azure Blob

Each IListBlobItem is going to be a CloudBlockBlob, a CloudPageBlob, or a CloudBlobDirectory. After casting to block or page blob, or their shared base class CloudBlob (preferably by using the as keyword and checking for null), you can access the modified date via blockBlob.Properties.LastModified. Note that your implementation will do an O(n) scan over all … Read more

Error making Azure Management Library API call when authenticating with azure active directory

I believe you’re on the right track as to why you’re running into this problem. Here’s what’s happening: Essentially permission to execute Service Management API is a delegated permission and not an application permission. In other words, the API is executed in context of the user for which the token is acquired. Now you are … Read more