# ImGuiFD **Repository Path**: OpenMedia/ImGuiFD ## Basic Information - **Project Name**: ImGuiFD - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-04-26 - **Last Updated**: 2026-04-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ImGuiFD A Dear ImGui based File Dialog without any extra dependencies (not even STL!). ## Usage ImGui like design: ```cpp if(...) { ImGuiFD::OpenDirDialog("Choose Dir", "."); } std::string path; if (ImGuiFD::BeginDialog("Choose Dir")) { if (ImGuiFD::ActionDone()) { if (ImGuiFD::SelectionMade()) { path = ImGuiFD::GetSelectionPathString(0); } ImGuiFD::CloseCurrentDialog(); } ImGuiFD::EndDialog(); } ```