[VB] Comment kill processus dans un endroit précis.

Comment kill processus dans un endroit précis. [VB] - VB/VBA/VBS - Programmation

Marsh Posté le 06-02-2014 à 23:38:11    

Bonjour, je voudrais kill un processus qui se trouve dans %temp%test/ sans kill les processus du meme nom qui se trouve dans un autre endroit. Avez vous une idée svp.
 
Voila ce que j'ai fait mais cela kill tous les processus qui porte se nom
 

Code :
  1. Dim filelist As String() = System.IO.Directory.GetFiles(Environment.GetEnvironmentVariable("temp" ) & "\test\", "*.exe", System.IO.SearchOption.AllDirectories)
  2.             If filelist.Length <> 0 Then
  3.                 For j = 0 To filelist.Count - 1
  4.                     Dim ktp() As Process = Process.GetProcesses
  5.                     For i As Integer = 0 To ktp.Length - 1
  6.                         If System.IO.Path.GetFileName((filelist(j).Remove(filelist(j).Length - 4))) = ktp(i).ProcessName Then
  7.                             ktp(i).Kill()
  8.                         End If

Reply

Marsh Posté le 06-02-2014 à 23:38:11   

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed