AltoLib.FinderHelper.OpenPersistentDataPath C# (CSharp) Method

OpenPersistentDataPath() private method

private OpenPersistentDataPath ( ) : void
return void
        public static void OpenPersistentDataPath()
        {
            if (Application.platform == RuntimePlatform.OSXEditor)
            {
                System.Diagnostics.Process.Start(Application.persistentDataPath);
            }
            else if (Application.platform == RuntimePlatform.WindowsEditor)
            {
                EditorUtility.RevealInFinder(Application.persistentDataPath);
            }
        }
    }