@whiteguru/capacitor-plugin-file-picker
v7.0.1
Published
Capacitor plugin to pick files
Readme
capacitor-plugin-file-picker
Capacitor plugin to pick files
Install (Capacitor 7.x)
npm install @whiteguru/capacitor-plugin-file-picker
npx cap syncInstall (Capacitor 6.x)
npm install @whiteguru/capacitor-plugin-file-picker^6.0.1
npx cap syncCapacitor 5.x
npm install @whiteguru/capacitor-plugin-file-picker@^5.0.1
npx cap syncCapacitor 4.x
npm install @whiteguru/capacitor-plugin-file-picker@^4.0.1
npx cap syncCapacitor 3.x
npm install @whiteguru/[email protected]
npx cap syncAPI
pick(...)
pick(options: FilePickerOptions) => Promise<FilePickerResults>| Param | Type |
| ------------- | --------------------------------------------------------------- |
| options | FilePickerOptions |
Returns: Promise<FilePickerResults>
Interfaces
FilePickerResults
| Prop | Type |
| ----------- | ------------------------------- |
| files | FilePickerResult[] |
FilePickerResult
| Prop | Type | Description |
| --------------- | ------------------- | ----------------------------------------------------------------------------------------------------------------- |
| path | string | File Path |
| webPath | string | webPath returns a path that can be used to set the src attribute of an image for efficient loading and rendering. |
| name | string | File Name |
| extension | string | File Extensions |
FilePickerOptions
| Prop | Type | Description |
| -------------- | --------------------- | --------------------- |
| multiple | boolean | Select multiple Files |
| mimes | string[] | Mimes to select |
