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 190 views
1 answer 220 views
1 answer 254 views
1 answer 215 views
1 answer 248 views
1 answer 100 views
100 views asked Aug 23, 2023 by avibootz
1 answer 263 views
...