tinyfd_selectFolderDialog

extern (C) nothrow @nogc
tinyfd_selectFolderDialog

Parameters

title c_str

C-string or null

defaultPath c_str

C-string or null

Return Value

Type: c_str

Selected folder path, null on cancel

Examples

c_str name = tinyfd_selectFolderDialog("Let us just select a directory", null);
if (name)
    tinyfd_messageBox("The selected folder is", name, "ok", "info", 1);

Meta