Reputation: 11247
How do I access the downloaded file when downloading an S3 image using fileTransferUtility.BeginDownload?
In my async callback function I have an IAsyncResult
paramter, but it doesn't provides any access to the downloadable image file from S3.
I am using the C#/.NET AWS SDK
Upvotes: 1
Views: 211
Reputation: 26023
Your TransferUtilityDownloadRequest object should have a FilePath property. If your download is finishing successfully, then you should check the value of FilePath
and access the file at that location upon receiving the callback.
Upvotes: 1