-
-
Notifications
You must be signed in to change notification settings - Fork 125
Description
Hey. This is a fantastic plugin. Thanks a lot for making it.
I've been trying to get this to work all day. I get an access error every time i try to load a folder. Apologies in advance, it's probably super simple.
When I use
This method:
yield return FileBrowser.WaitForLoadDialog( FileBrowser.PickMode.FilesAndFolders, true, null, null, "Load Files and Folders", "Load" );
I get the following error when opening a folder:
UnauthorizedAccessException: Access to the path 'and insert path here' is denied;
I've tried using the folders only option, but it yields the same result.
I then tried using your other method
FileBrowser.ShowLoadDialog( ( paths ) => { Debug.Log( "Selected: " + paths[0] ); },
() => { Debug.Log( "Canceled" ); },
FileBrowser.PickMode.Folders, false, null, null, "Select Folder", "Select" );
But my issue here is that I can't figure out how to read paths[0] afterwards. I tried using OnSuccess but I have no idea how to get the value out of that either.
Hope you can help. An example would be great. Thanks in advance.