Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
portable-file-dialogs.h
✓ #include <portable-file-dialogs.h>
Open a file dialog and print the selected file path
#include "portable-file-dialogs.h"
#include <iostream>
int main() {
auto result = pfd::open_file("Select a file", ".", {"Text Files", "*.txt"});
if (!result.result().empty()) {
std::cout << "Selected: " << result.result()[0] << std::endl;
}
return 0;
}
Debug
Known issues
No known issues recorded.
Audit
Dependencies
No dependency data recorded yet.
Resources
No resource links recorded.