link to open a folder

  • Thread starter Thread starter Aaron
  • Start date Start date
A

Aaron

I wrote a c# win form app. I would like to link a botton to a folder. so
when someone clicks the botten it opens up a folder (is it explorer.exe?)

Thanks,
Aaron
 
Aaron,

What do you want to do with that folder? I assume that you want to open a
kind of dialog.

Cor
 
I want to do the equivalent of <a href="files://c:\" target="new">A Link</a>
in a win form.
 
If you created the WinForm App, you can do that as follow:

System.Diagnostics.Process.Start("C:\\");



I have tried it , and passed.
 
Back
Top