Answers for "unity open file explorer"

C#
0

unity open file explorer

public void ShowExplorer(string itemPath) 
{
    // explorer doesn't like front slashes    
    itemPath = itemPath.Replace(@"/", @"\");
	System.Diagnostics.Process.Start("explorer.exe", "/select,"+itemPath);
}
Posted by: Guest on October-14-2020

Code answers related to "unity open file explorer"

C# Answers by Framework

Browse Popular Code Answers by Language