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

1 Answer

0 votes
using System.Diagnostics;

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


/*
run:

 
*/

 



answered Aug 8, 2018 by avibootz

Related questions

1 answer 143 views
1 answer 166 views
1 answer 210 views
1 answer 178 views
1 answer 208 views
1 answer 71 views
71 views asked Aug 23, 2023 by avibootz
1 answer 229 views
...