本文介绍了如何在C#中同时将多个文件保存到磁盘的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
大家好,
我需要创建一个简单的应用程序,将文件并行保存到磁盘。 For.eg如果有10封邮件,则应读取每封邮件并将附件并行保存到磁盘。我怎样才能使用多线程?
1stMail - 执行任务
2ndMail - 执行任务。
|
|
10thMAil-执行任务。
同样所有这些都应该平行完成,而不是一个接一个地完成。
我尝试过:
Hello everyone,
I need to create a simple application that should save the files to disk parallely. For.eg If there are 10 mails, each mail should be read and save the attachments to the disk parallely. How can I do that using multithreading?
1stMail - Performing the task
2ndMail - Performing the task.
|
|
10thMAil- Performing the task.
Similarly all these should be done parallely instead of one after the other.
What I have tried:
foreach (Item item in findResults)
{
ThreadPool.QueueUserWorkItem(delegate
{
StartProcess(item);
}, null);
Thread.Sleep(1000);
}
推荐答案
这篇关于如何在C#中同时将多个文件保存到磁盘的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!