cordova-plugin-simple-file-chooser-1

3.0.2 • Public • Published

Chooser

Overview

This plugin is an forked version of cordova plugin chooser that provides multiple file selection functionality and removes base64 functionality as we can use ionic native file plugin to get file directly

Installing

cordova plugin add cordova-plugin-simple-file-chooser

Supported Platforms:

  • Android
  • iOS

API

/**
  * Displays native prompt for user to select one or more files.
  *
  * @param accept Optional MIME type filter (e.g. 'image/gif,video/*').
  *
  * @returns Promise containing selected files' information,
  * MIME type, display name, and original URI.
  *
  * If user cancels, promise will be resolved as undefined.
  * If error occurs, promise will be rejected.
  */
chooser.getFiles(accept?: string) : Promise<undefined|{
	mediaType: string;
	name: string;
	uri: string;
}>

Example Usage

(async () => {
  const file = await chooser.getFile();
  console.log(file);
})();

Note

If calling in typescript don't use types instead use direct javascript by declare var chooser on your ts file.

Package Sidebar

Install

npm i cordova-plugin-simple-file-chooser-1

Weekly Downloads

34

Version

3.0.2

License

Apache-2.0

Unpacked Size

1.67 MB

Total Files

12

Last publish

Collaborators

  • idplive720720