unity 如何打开本地文件夹,并选中文件

Posted aaronblogs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了unity 如何打开本地文件夹,并选中文件相关的知识,希望对你有一定的参考价值。

 1 public static void OpenDirectory(string path, bool isFile = false)
 2     {
 3         if (string.IsNullOrEmpty(path)) return;
 4         path = path.Replace("/", "\");
 5         if (isFile)
 6         {
 7             if (!File.Exists(path))
 8             {
 9                 Debug.LogError("No File: " + path);
10                 return;
11             }
12             path = string.Format("/Select, {0}", path);
13         }
14         else
15         {
16             if (!Directory.Exists(path))
17             {
18                 Debug.LogError("No Directory: " + path);
19                 return;
20             }
21         }
22         //可能360不信任
23         System.Diagnostics.Process.Start("explorer.exe", path);
24     }

 

以上是关于unity 如何打开本地文件夹,并选中文件的主要内容,如果未能解决你的问题,请参考以下文章

Unity打开电脑本地文件夹选择图片替换

Unity复制选中脚本并修改器文件名与类名

如何彻底删除SVN中的文件和文件夹

unity发布安卓怎么读取本地文件

unity要怎么做才能把快捷键的文件夹打开

如何将unity资源窗体中的文件一下所有折叠/打开