s-f
0
Q:

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);
}
0

New to Communities?

Join the community