You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Open a system directory picker. Returns a promise that resolves to (`{ uri: string }`) of the directory selected by user.
42
+
39
43
#### `DocumentPicker.pick(options)` and `DocumentPicker.pickMultiple(options)`
40
44
41
45
Use `pick` or `pickMultiple` to open a document picker for the user to select file(s). Both methods return a Promise. `pick` will only allow a single selection and the Promise will resolve to that single result. `pickMultiple` will allow multiple selection and the Promise returned will always resolve to an array of results.
@@ -108,10 +112,6 @@ The file size of the document. _On Android some DocumentProviders may not provid
108
112
The base64 encoded content of the picked file if the option `readContent` was set to `true`.
0 commit comments