untiy 代码获取选定文件所在的文件夹路径
时间: 2023-12-28 08:04:40 浏览: 95
获取文件路径
下面是在Unity中获取选定文件所在的文件夹路径的代码:
```
string filePath = EditorUtility.OpenFilePanel("Select File", "", "");
if (!string.IsNullOrEmpty(filePath))
{
string folderPath = Path.GetDirectoryName(filePath);
Debug.Log("Selected file's folder path: " + folderPath);
}
```
首先,使用`EditorUtility.OpenFilePanel`方法获取选定文件的路径。然后,使用`Path.GetDirectoryName`方法获取该文件所在的文件夹路径。最后,将文件夹路径记录下来或输出到控制台。
阅读全文