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 161 views
1 answer 165 views
1 answer 209 views
1 answer 177 views
1 answer 207 views
1 answer 70 views
70 views asked Aug 23, 2023 by avibootz
1 answer 228 views
...