0

I have a C# console application program that creates a .txt file in the Assembly Path. is there any way i can make the newly created file popup once the program finishes execution?

Any help will be greatly appreciated.

Thanks

Ananya Malik
  • 17
  • 1
  • 6

1 Answers1

0

I guess Process.Start(fileName); is what you are looking for.

Process.Start in MSDN

Scoregraphic
  • 7,110
  • 4
  • 42
  • 64