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 188 views
1 answer 215 views
1 answer 245 views
1 answer 209 views
1 answer 241 views
1 answer 92 views
92 views asked Aug 23, 2023 by avibootz
1 answer 256 views
...