Table of Contents
Helper methods for processes
public static class ProcessHelper
Inheritance System.Object ProcessHelper
Opens a file in the default app for it
public static void OpenFile(string filePath);
filePath
System.String
File path
Opens a folder in the file explorer
public static void OpenFolder(string folderPath);
folderPath
System.String
Folder to open
Opens a url in the default browser
public static void OpenURL(string url);
url
System.String
URL to open
Exits the game and starts a new process after waiting 10 seconds, to ensure no "Another instance is already running"
errors
public static void RestartGame();