> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Method name: showFileUploadPicker(fileType: string, options: FilePickerOptions) # Method package: wixMobile # Method menu location: wixMobile --> AppFramework --> showFileUploadPicker # Method Link: https://dev.wix.com/docs/velo/apis/wix-mobile/app-framework/show-file-upload-picker.md # Method Description: Opens a file picker that allows an app user to upload media to the app's [media manager](https://support.wix.com/en/article/wix-media-about-the-media-manager). ![developer preview tag](https://user-images.githubusercontent.com/89579857/213133550-2b4fa3e8-e8fc-4513-a733-00abcc70925c.png) This method allows app users to select files or capture media from their camera to upload to the application. Files are uploaded to the app's media manager, which is shared across your app and site. Customize the file picker to limit the maximum number of files that can be uploaded or where the app user can upload media from. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Open a file picker ```javascript import { appFramework } from 'wix-mobile'; appFramework.showFileUploadPicker( 'Image', { fileLimit: 10, showCamera: true, showDeviceMedia: true, autoUpload: true } ).then((result) => { result.forEach((file) => { console.log( `${file.fileName} ${file.url ? "successfully" : "was not"} uploaded. File type: ${file.fileType} File size: ${file.sizeInBytes}bytes ${file.url && ` URL: ${file.url}`}`); }); }).catch((error) => { console.error(error); }) ``` ---