Thread en c#
Résolu/Fermé
moi411
-
8 juil. 2007 à 19:20
moi411 Messages postés 179 Date d'inscription samedi 22 novembre 2003 Statut Membre Dernière intervention 25 juin 2017 - 9 juil. 2007 à 22:41
moi411 Messages postés 179 Date d'inscription samedi 22 novembre 2003 Statut Membre Dernière intervention 25 juin 2017 - 9 juil. 2007 à 22:41
A voir également:
- Thread en c#
- Thread - Accueil - Guide réseaux sociaux
- Compte thread - Accueil - Réseaux sociaux
- C'est quoi thread instagram - Accueil - Instagram
- Exception in thread "main" java.awt.illegalcomponentstateexception: contentpane cannot be set to null. ✓ - Forum Programmation
- Thread stuck in device driver ✓ - Forum Windows 10
2 réponses
Au cas ou qqun aurait besoin de cette réponse, je connais qqun qui a finalement pu m'aider et donc je mais le code fonctionnel, à tous hasards...
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.Threading;
namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
//délégation servant à afficher dans la textbox
delegate void AjoutTextBoxText(string Texte);
public void AjoutTextBox(string Texte)
{
textBox1.Text = Texte;
}
//Même chose avec la listview
delegate void AjoutListViewItem(string chem, string taille);
public void AjoutListView(string chem, string taille)
{
ListViewItem it = new ListViewItem();
it.Text = chem;
it.SubItems.Add(taille);
listView1.Items.Add(it);
}
private void button1_Click(object sender, EventArgs e)
{
//rep ou commencer la recherche
DirectoryInfo rep = new DirectoryInfo(@"C:\");
//Thread servant commencer la recherche
Thread t = new Thread(new ThreadStart(AfficherChemin));
t.Name = "TChemin";
t.Start();
}
public void Chercher(DirectoryInfo Rep)
{
try
{
//récupère le chemin complet du dossier où se trouve le fichier
AjoutTextBoxText ajoutText = new AjoutTextBoxText(AjoutTextBox);
Invoke(ajoutText, new object[] { Rep.FullName });
//récupère le nom du fichier ainsi que sa taille
AjoutListViewItem ajoutItem = new AjoutListViewItem(AjoutListView);
//dans le répertoire courant on cherche tous les fichiers
//dont l'extension est .txt
foreach (FileInfo f in Rep.GetFiles("*.txt"))
{
Invoke(ajoutItem, new object[] { f.FullName, f.Length.ToString() });
}
}
catch { }
try
{
//si il y a des sous répertoires on rappelle "Chercher();" (principe de la récursivité)
DirectoryInfo[] a = Rep.GetDirectories();
foreach (DirectoryInfo b in a)
{
Chercher(b);
}
}
catch { }
}
//le thread appelle cette fonction qui cherche les fichiers texte sur un disque (C:).
public void AfficherChemin()
{
DirectoryInfo rep = new DirectoryInfo(@"C:\");
Chercher(rep);
}
}
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.Threading;
namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
//délégation servant à afficher dans la textbox
delegate void AjoutTextBoxText(string Texte);
public void AjoutTextBox(string Texte)
{
textBox1.Text = Texte;
}
//Même chose avec la listview
delegate void AjoutListViewItem(string chem, string taille);
public void AjoutListView(string chem, string taille)
{
ListViewItem it = new ListViewItem();
it.Text = chem;
it.SubItems.Add(taille);
listView1.Items.Add(it);
}
private void button1_Click(object sender, EventArgs e)
{
//rep ou commencer la recherche
DirectoryInfo rep = new DirectoryInfo(@"C:\");
//Thread servant commencer la recherche
Thread t = new Thread(new ThreadStart(AfficherChemin));
t.Name = "TChemin";
t.Start();
}
public void Chercher(DirectoryInfo Rep)
{
try
{
//récupère le chemin complet du dossier où se trouve le fichier
AjoutTextBoxText ajoutText = new AjoutTextBoxText(AjoutTextBox);
Invoke(ajoutText, new object[] { Rep.FullName });
//récupère le nom du fichier ainsi que sa taille
AjoutListViewItem ajoutItem = new AjoutListViewItem(AjoutListView);
//dans le répertoire courant on cherche tous les fichiers
//dont l'extension est .txt
foreach (FileInfo f in Rep.GetFiles("*.txt"))
{
Invoke(ajoutItem, new object[] { f.FullName, f.Length.ToString() });
}
}
catch { }
try
{
//si il y a des sous répertoires on rappelle "Chercher();" (principe de la récursivité)
DirectoryInfo[] a = Rep.GetDirectories();
foreach (DirectoryInfo b in a)
{
Chercher(b);
}
}
catch { }
}
//le thread appelle cette fonction qui cherche les fichiers texte sur un disque (C:).
public void AfficherChemin()
{
DirectoryInfo rep = new DirectoryInfo(@"C:\");
Chercher(rep);
}
}
moi411
Messages postés
179
Date d'inscription
samedi 22 novembre 2003
Statut
Membre
Dernière intervention
25 juin 2017
2
9 juil. 2007 à 22:41
9 juil. 2007 à 22:41
Eh bien en fait la solution définitive se trouve dans le message ci-avant, je n'ai pas fais attention en écrivant et donc j'ai oublié de préciser que c'était fini...
Bref la bonne réponse est juste au-dessus, désolé!!!
Bref la bonne réponse est juste au-dessus, désolé!!!