We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4e8a0f commit 5e233d9Copy full SHA for 5e233d9
1 file changed
Packages/com.7thbeat.filebrowser/Runtime/FileBrowser.cs
@@ -1,10 +1,16 @@
1
+using System.Collections.Generic;
2
using Interop;
3
using JetBrains.Annotations;
4
5
namespace UnityFileDialog
6
{
7
public static class FileBrowser
8
9
+ /// <summary>
10
+ /// Open file browser and select the file(does not open file)
11
+ /// </summary>
12
+ /// <param name="path">path to reveal</param>
13
+ /// <returns></returns>
14
public static bool Reveal(string path) => NativeFunctions.opener_reveal(path);
15
16
/// <summary>
0 commit comments