コード例 #1
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
 }
コード例 #2
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
 }
コード例 #3
0
ファイル: WinOpen.cs プロジェクト: romanlara/Pigmentone
        public void OpenFolderToDisplayFile(string filePath)
        {
#if UNITY_STANDALONE
            filePath = "\"" + "filePath" + "\"";
            var processRunner = new RuntimeProcessRunner("explorer.exe", string.Format("/select,{0}", filePath));
            processRunner.Execute();
#endif
        }
コード例 #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
        }