Skip to content

complianceexperts/cordova-plugin-windows-filepicker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#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"]);

Installation

cordova plugin add cordova-plugin-windows-filepicker@latest

or you can install directly from github,

cordova plugin add https://github.com/dilhan2013/cordova-plugin-windows-filepicker.git

About

allows to choose any file in windows

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%