Click here to Skip to main content
15,895,813 members

Comments by karekarmahadev (Top 4 by date)

karekarmahadev 26-Jun-19 1:38am View    
@OriginalGriff, Thanks for your comments!!. Yes, you are right, I had tried to use Multithreading approach, but the application went into "Not Responding " mode.
karekarmahadev 26-Jun-19 1:32am View    
"But you can use TPL in .NET framework 4.0. Don't take my word for this, "
>> Agree, what I wanted to use was Aync/Task, My bad I thought it was part of TPL.
Task-based Asynchronous Pattern (TAP). https://docs.microsoft.com/en-us/dotnet/csharp/async
karekarmahadev 26-Jun-19 0:39am View    
"Then why don't you use the SharePoint SDKs for this? They will take care of how to order the download jobs, download and provide you with the 10,000+ files on your machine."

Yes, I am using SharePoint SDKs, which allows me to download 10000+ files without any issues. What I wanted to do is speed up this operation, so was thinking about asynchronous way. But as per some expert comments above looks like this is not a good approach.
karekarmahadev 26-Jun-19 0:37am View    
Deleted
"Then why don't you use the SharePoint SDKs for this? They will take care of how to order the download jobs, download and provide you with the 10,000+ files on your machine."
Yes, I am using SharePoint SDKs, which allows me to download 10000+ files without any issues. What I wanted to do is speed up this operation, so was thinking about asyncronous way. But as per some expert comments i think is is not possible.