Получить список компьютеров в сети - C#

Узнай цену своей работы

Формулировка задачи:

Доброго времени суток!!! Как получить список компьютеров в сети и произвести листинг открытых директорий на них?

Решение задачи: «Получить список компьютеров в сети»

textual
Листинг программы
  1.   /// <summary>
  2.         /// method for getting the names of all shared folders on local system
  3.         /// </summary>
  4.         /// <returns>Generic list of all share names</returns>
  5.         public void GetShareNames()
  6.         {
  7.             Process proc = new Process();   // This creates a new process
  8.             proc.StartInfo.FileName = "cmd"; // Tells it to launch a command prompt
  9.  
  10.             //  This line runs a command called "net view"
  11.             //  which is a built in windows command that returns all the shares
  12.             //  on a network
  13.             proc.StartInfo.Arguments = "/C net view";
  14.  
  15.             // This property redirects the output of the command ran
  16.             // to the StandardOutput object we use later
  17.             proc.StartInfo.RedirectStandardOutput = true;
  18.             proc.StartInfo.UseShellExecute = false;
  19.  
  20.             // This tells the program to show the command window or not
  21.             // set to true to hide the window
  22.             proc.StartInfo.CreateNoWindow = false;
  23.             proc.Start();
  24.  
  25.             // Sets all the output into a string
  26.             string data = proc.StandardOutput.ReadToEnd();
  27.             int start = 0;
  28.             int stop = 0;
  29.  
  30.             // This parses through the output string
  31.             // and grabs each share and outputs it.
  32.             // you can save the strings into an array and add
  33.             // them to a list box or something if you wanted to.
  34.             while (true)
  35.             {
  36.                 start = data.IndexOf('\\', start);
  37.                 if (start == -1)
  38.                     break;
  39.                 stop = data.IndexOf('\n', start);
  40.                 listBox1.Items.Add(data.Substring(start, stop - start));
  41.                 start = stop;
  42.             }
  43.  
  44.         }

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

8   голосов , оценка 3.625 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут