How to open windows explorer with Local Disk (D:) in C#

1 Answer

0 votes
using System.Diagnostics;

namespace ConsoleApplication_C_Sharp
{
    class Program
    {
        static void Main(string[] args)
        {
            Process.Start("D:\\");
        }
    }
}


/*
run:

 
*/

 



answered Aug 9, 2018 by avibootz

Related questions

1 answer 200 views
1 answer 224 views
1 answer 259 views
1 answer 221 views
1 answer 255 views
1 answer 106 views
106 views asked Aug 23, 2023 by avibootz
1 answer 265 views
...