public static void OpenInFileBrowser(string strPath) { if (true == string.IsNullOrEmpty(strPath)) { return; } #if UNITY_EDITOR_WIN SHUtils.OpenInWinFileBrowser(strPath); #elif UNITY_EDITOR_OSX SHUtils.OpenInMacFileBrowser(strPath); #endif }