コード例 #1
0
 /// <summary>
 /// Open native folder browser for multiple folders.
 /// NOTE: Multiple folder selection isnt't supported on Windows!
 /// </summary>
 /// <param name="title">Dialog title</param>
 /// <param name="directory">Root directory (default: current, optional)</param>
 /// <param name="multiselect">Allow multiple folder selection (default: true, optional)</param>
 /// <returns>Returns array of chosen folders. Zero length array when cancelled</returns>
 public static string[] OpenFolders(string title, string directory = "", bool multiselect = true)
 {
     return(platformWrapper.OpenFolders(title, directory, multiselect));
 }
コード例 #2
0
 /// <summary>
 /// Open native folder browser for multiple folders.
 /// NOTE: Multiple folder selection is not supported on Windows!
 /// </summary>
 /// <param name="title">Dialog title</param>
 /// <param name="directory">Root directory (default: current, optional)</param>
 /// <returns>Returns array of chosen folders. Zero length array when cancelled</returns>
 public static string[] OpenFolders(string title, string directory = "")
 {
     return(platformWrapper.OpenFolders(title, directory, true));
 }