1

I want to send and receive commands like "dir" and so on but i can't manage to read the output

user302823
  • 361
  • 1
  • 3
  • 13

3 Answers3

3

You have to redirect std in and std out. Once you do that, in C#, use the console as you would if you were writing a console app.

http://msdn.microsoft.com/en-us/library/3x859hf2(vs.71).aspx

Gabriel McAdams
  • 56,921
  • 12
  • 61
  • 77
1

You should not use console commands from code unless you really need to. (Hint: You don't)

You're looking for Directory.GetFiles.

SLaks
  • 868,454
  • 176
  • 1,908
  • 1,964
1

If you are trying to execute an external application and capture the output you should look at this. The System.IO namespace has Directory, File, and Path classed which avoid the need to use external applications to enumerate directories.

Community
  • 1
  • 1
Brian Lyttle
  • 14,558
  • 15
  • 68
  • 104