filepicker_windows 2.0.3 filepicker_windows: ^2.0.3 copied to clipboard
A plugin that uses FFI to offer file selection in Windows using the modern common item dialog box.
import 'package:filepicker_windows/filepicker_windows.dart';
// Normal file open dialog box example
void main() {
final file = OpenFilePicker()
..filterSpecification = {
'Word Document (*.doc)': '*.doc',
'Web Page (*.htm; *.html)': '*.htm;*.html',
'Text Document (*.txt)': '*.txt',
'All Files': '*.*'
}
..defaultFilterIndex = 0
..defaultExtension = 'doc'
..title = 'Select a document';
final result = file.getFile();
if (result != null) {
print(result.path);
}
}