string path = Util.GetTempFolder();
if (Directory.Exists(path + "root\\"))
System.Diagnostics.Process.Start("explorer.exe", path + "root\\");
else if (Directory.Exists(path))
System.Diagnostics.Process.Start("explorer.exe", path);
else { MessageBox.Show("Can't find the temporary file.\n\nMake sure the Cyber Gadget software is paused.", "Alert"); }
It should be opening the temp folder where main is stored, it shouldn't auto-load the save file. Once the folder is open you can drag the main file in.
You can always use Open File instead as that is reported to work.