overwolf.utils.openFolderPicker
Overwolf APIs / overwolf / overwolf / utils / openFolderPicker
function openFolderPicker(
initialPath: string,
callback: CallbackFunction<OpenFolderPickerResult>,
): void;
Opens a Folder picker dialog to browse for a folder. A full path to the selected folder will be returned.
Parameters
| Parameter | Type | Description |
|---|---|---|
initialPath | string | The starting folder's path |
callback | CallbackFunction<OpenFolderPickerResult> | Called with the selected folder. |
Returns
void