Problème backgroundWorker et progressBar
Bonjour à tous, je suis débutant dans la programmation c#, et pour m'entraîner je me suis lancé dans la création d'un programme de recherche de fichiers.
J'avais peu près réussi ce que je voulais faire, càd rechercher un fichier par nom, afficher les résultats et enregistrer les fichiers à un autre emplacement. Bref seule la dernière étape n'était pas ok, le reste, très basique, marchait. Mon seul problème était le freeze du programme lors de la recherche, après quelques prises d'infos ici et ailleurs j'ai essayé de mettre en place un BackGroundWorker ainsi qu'une progressBar.
Pour cela je me suis aidé d'un tuto du site et de la MSDN, mais le problème désormais est que le programme freeze toujours autant, la recherche ne marche plus et la progressBar ne progresse pas !:cry:
Voici mon code (désolé s'il est un peu 'rustique' et/ou pas très clair) :
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
| using System;
using System.IO;
using System.Resources;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
using System.Web.UI.WebControls;
using System.Net;
using System.Data;
using System.Collections;
using System.Data.OleDb;
using System.Xml;
using System.Runtime.InteropServices;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
DriveInfo[] disques = DriveInfo.GetDrives();
foreach (DriveInfo d in disques)
{
listBox1.Items.Add(d.Name);
}
listBox1.Show();
}
private void button2_Click(object sender, EventArgs e)
{
textBox1.Clear();
listBox1.ClearSelected();
}
private void button1_Click(object sender, EventArgs e)
{
if (button1.Text.Equals("Annuler"))
{
bgw.CancelAsync();
button1.Text = "Démarrer";
progressBar1.Value = 0;
}
if (textBox1.Text == null)
{
MessageBox.Show("Veuillez saisir un nom de fichier à recercher");
}
try
{
string[] dirs;
dirs= Directory.GetFiles(@listBox1.SelectedItem.ToString(), textBox1.Text,SearchOption.AllDirectories);
bgw.RunWorkerAsync();
button1.Text = "Annuler";
//int filecount = dirs.GetUpperBound(0) + 1;
while (bgw.IsBusy)
{
foreach (string dir in dirs)
{
listBox2.Items.Add(dir);
listBox2.Show();
}
}
button1.Text = "Rechercher";
}
catch (Exception)
{
MessageBox.Show("veuillez définir un emplacement de recherche");
}
}
private void button3_Click(object sender, EventArgs e)
{
for (int i = 0; i < listBox2.Items.Count; i++)
{
listBox2.SetSelected(i, true);
}
}
private void button4_Click(object sender, EventArgs e)
{
for (int i = 0; i < listBox2.Items.Count; i++)
{
listBox2.SetSelected(i, false);
}
}
private void button5_Click(object sender, EventArgs e)
{
string[] values = new string[listBox2.Items.Count];
try
{
for (int i = 0; i < listBox2.Items.Count; i++)
{
values[i] = listBox2.SelectedItems[i].ToString();
}
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
try
{
for (int i = 0; i < values.Length; i++)
{
MessageBox.Show(values[i].ToString());
}
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
}
private void bgw_DoWork(object sender, DoWorkEventArgs e)
{
BackgroundWorker worker = sender as BackgroundWorker;
e.Result = Treatment((int)e.Argument,(int)e.Argument, worker, e);
}
private long Treatment(int nb, int max, BackgroundWorker worker, DoWorkEventArgs e)
{
long result = 0;
if (worker.CancellationPending)
{
e.Cancel = true;
}
else
{
int pourcent = (int)(((double)max - (double)nb) / (double)max * 100);
worker.ReportProgress(pourcent);
if (nb <= 1)
{
result = 1;
}
else
{
System.Threading.Thread.Sleep(100);
result = Treatment(nb - 1, max, worker, e) + 1;
}
}
return result;
}
private void bgw_ProgressChanged(object sender, ProgressChangedEventArgs e)
{
this.progressBar1.Value = e.ProgressPercentage;
}
private void bgw_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
{
if (e.Error != null)
{
MessageBox.Show( "Une erreur est survenue ! Détail : " + e.Error.Message);
}
else if (e.Cancelled)
{
MessageBox.Show( "Opération annulée !");
}
else
{
MessageBox.Show("Opération terminée ! Résultat : " + e.Result.ToString());
}
button1.Text = "Démarrer";
progressBar1.Value = 0;
}
}
} |
Merci pour ceux qui auront le courage de lire et de m'aider.