New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

cordova-plugin-windows-filepicker

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cordova-plugin-windows-filepicker

File picker for windows platform

latest
Source
npmnpm
Version
0.1.7
Version published
Maintainers
1
Created
Source

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

Keywords

ecosystem:cordova

FAQs

Package last updated on 09 Jan 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts