Answers for "c# open file explorer to select file"

C#
0

open file in explorer c#

// required in addition to other 'using necessary
using System.Diagnostics;
using System.IO;

private void OpenFolder(string folderPath)
{
    if (Directory.Exists(folderPath))
    {
        ProcessStartInfo startInfo = new ProcessStartInfo
        {
            Arguments = folderPath,
            FileName = "explorer.exe";
        };

        Process.Start(startInfo);
    }
    else
    {
        MessageBox.Show(string.Format("{0} Directory does not exist!", folderPath));
    }
}
Posted by: Guest on June-14-2020

Code answers related to "c# open file explorer to select file"

C# Answers by Framework

Browse Popular Code Answers by Language