2using System.Collections.Generic;
Represents a series of methods to operate platform-specific file pickers.
void SaveFilePanelAsync(string title, string directory, string defaultName, ExtensionFilter[] extensions, Action< T > cb)
Opens the platform-specific file save panel Asynchronously.
IList< T > OpenFilePanel(string title, string directory, ExtensionFilter[] extensions, bool multiselect)
Opens the platform-specific file selection panel.
void OpenFilePanelAsync(string title, string directory, ExtensionFilter[] extensions, bool multiselect, Action< IList< T > > cb)
Opens the platform-specific file selection panel Asynchronously.
void OpenFolderPanelAsync(string title, string directory, bool multiselect, Action< IList< T > > cb)
Opens the platform-specific folder selection panel Asynchronously.
T SaveFilePanel(string title, string directory, string defaultName, ExtensionFilter[] extensions)
Opens the platform-specific file save panel.
IList< T > OpenFolderPanel(string title, string directory, bool multiselect)
Opens the platform-specific folder selection panel.
Represents a file picker extension filter.