Open Folder
-
Hi , I want to open the foder. That is on a button click I want to show folder open in explorer. How to do that? Rahul Kulkarni.
Maybe this article will help you ?
My english is not so good. Please, correct my errors. Best regards, Alexey.
-
Maybe this article will help you ?
My english is not so good. Please, correct my errors. Best regards, Alexey.
Thanks For your response. I want to show the folder content. Take an example, "path = c:\test\" and now normally if we want to see content of this folder We have to go through click on My Computer then c: and finally test. But i want to open test through programming in C#.Net. How to do that? Rahul Kulkarni
-
Thanks For your response. I want to show the folder content. Take an example, "path = c:\test\" and now normally if we want to see content of this folder We have to go through click on My Computer then c: and finally test. But i want to open test through programming in C#.Net. How to do that? Rahul Kulkarni
-
Try this code:
System.Diagnostics.Process.Start("explorer.exe", "c:\\Test");
My english is not so good. Please, correct my errors. Best regards, Alexey.