0.1.7 • Published 7 years ago

cordova-plugin-windows-filepicker v0.1.7

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

#File picker for windows platform This plugin enables use to select files using native file selector dialog in windows.

Simple Usage

   window.plugins.WindowsFilePicker.open(function (uri) {
      
      alert(uri);
      
    }, function (error) {
      
        alert(error);
    
    });

Filtering by extension

You can also provide specific file type such as *.pdf, *.docx. By default it will display all file types (*.*)

   window.plugins.WindowsFilePicker.open(function (uri) {
      
      alert(uri);
      
    }, function (error) {
      
        alert(error);
    
    },
    ["*.pdf","*.docx"]);