how to open the file explorer in unity code example
Example: 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);
}