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 194 views
1 answer 219 views
1 answer 253 views
1 answer 214 views
1 answer 247 views
1 answer 99 views
99 views asked Aug 23, 2023 by avibootz
1 answer 262 views
...