public void OpenFolderToDisplayFile(string filePath)
 {
     #if UNITY_STANDALONE
     filePath = "\"" + filePath + "\"";
     var processRunner = new RuntimeProcessRunner("open", string.Format("-n -R {0}", filePath));
     processRunner.Execute();
     #endif
 }
 public void OpenFolderToDisplayFile(string filePath)
 {
     #if UNITY_STANDALONE
     filePath = "\"" + "filePath" + "\"";
     var processRunner = new RuntimeProcessRunner("explorer.exe", string.Format("/select,{0}", filePath));
     processRunner.Execute();
     #endif
 }
Example #3
0
        public void OpenFolderToDisplayFile(string filePath)
        {
#if UNITY_STANDALONE
            filePath = "\"" + "filePath" + "\"";
            var processRunner = new RuntimeProcessRunner("explorer.exe", string.Format("/select,{0}", filePath));
            processRunner.Execute();
#endif
        }
Example #4
0
        public void OpenFolderToDisplayFile(string filePath)
        {
#if UNITY_STANDALONE
            filePath = "\"" + filePath + "\"";
            var processRunner = new RuntimeProcessRunner("open", string.Format("-n -R {0}", filePath));
            processRunner.Execute();
#endif
        }