Questions tagged [filepicker]

Questions about the use of file pickers in general. Not to be confused with [filepicker.io]; use that tag for questions related to that service.

This tag refers to generic file pickers.

For questions related to the filepicker.io service, use the tag instead.

Examples

HTML

<input type="file">
413 questions
0
votes
1 answer

In file picker in flutter, path was not unique

I'm trying with two different images with same name. But the path was same for two picked images. it was not unique.So that I uploaded in server second image with the same name of first uploaded image. But server had both the image are same and it…
Maheswari
  • 65
  • 1
  • 6
0
votes
1 answer

file_picker - onPressed does not delete a card neither refresh the view

I am using File_Picker.dart I am having an issue with one of the function I have written. When I press on the icon delete, the record is not deleted, and the screen is not refreshed. What I mean is that the card is still displayed. Also, what I am…
Laurent Thomas
  • 232
  • 4
  • 24
0
votes
1 answer

Missing Network shares in wx.FileDialog

I'm using Xubuntu 8.10 with Nautilus as file manager (XFCE desktop isn't active, Nautilus handles it), and I have a wxPython 2.8.8.0 application with a FileBrowseButton that works as expected, except for the "Network" shortcut on the left side of…
Joril
  • 19,961
  • 13
  • 71
  • 88
0
votes
0 answers

Pick a .bin file via Intent.createChooser in Android

Running this code allows a user to select a file: private int PICKFILE_RESULT_CODE = 3456; Intent chooseFile = new Intent(Intent.ACTION_GET_CONTENT); chooseFile.addCategory(Intent.CATEGORY_OPENABLE); chooseFile.putExtra(Intent.EXTRA_LOCAL_ONLY,…
parvus
  • 5,706
  • 6
  • 36
  • 62
0
votes
1 answer

Need to call other Word macros in mass update tool

Quick summary: I need to call additional macros to modify documents inside of an existing code that mass converts Word files to PDF (if possible). Longer story: I have code from a long time ago (credit to wherever I found it a decade ago). It uses a…
Brian
  • 5
  • 1
0
votes
1 answer

Can't install permission_handler and file_picker because of cloud_firestore

I want to get data from Firestore, put it into a list and enable to user to download data on phone in CSV format by using app. I found two solutions how to export data to CSV file on phone, but both solutions contains packages which I can't…
0
votes
1 answer

How I Create Excel Workbook with Syncfusion XLSIO from Uint8list or File in Flutter?

I got the Excel file from file-picker as Uint8list, and convert to it File now: FilePickerResult result = await FilePicker.platform.pickFiles( type: FileType.custom, allowedExtensions: ['xlsx'], ); if (result != null) { var file =…
berkb
  • 542
  • 6
  • 21
0
votes
0 answers

In android 10 and 11 how to get real file path from URI while using scope storage access framework

How to get real file path from URI while using storage access framework in android Q and android R. My code to pick pdf file using system file picker i.e. Intent(Intent.ACTION_OPEN_DOCUMENT).apply { type = "application/pdf" …
0
votes
1 answer

Retrieving Image from Chooser Intent in Android 10

I'm trying to update my app to work with androids new scoped storage rules in Android 10 and up, but am having the hardest time with it. I know I need to rebuild my app with new versions of java, but I just want to get it to work while I study and…
0
votes
1 answer

want to fetch bytes of selected file from device

So basically i want to select the files from my device and encrypt them with the help of bytes. I am done with the selection part and have done that using file picker if anyone can help me how to get bytes of the file i have selected it would be…
yogender
  • 202
  • 3
  • 12
0
votes
0 answers

Shows the results of file selection (I use the file_picker plugin) before uploading onFlutter

Shows the results of file selection (I use the file_picker plugin) before uploading. like we choose a PDF file to be sent on gmail automatically there is a special block of PDF attachments after selecting the file the file will appear like this
i18
  • 33
  • 2
  • 10
0
votes
2 answers

No Activity found to handle Intent: intent.action.PICK

How can I solve this error on android 9.0. When I run on android 7 and below there is no error android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.PICK dat=content://media/external/audio/media…
Edward Muss
  • 49
  • 1
  • 10
0
votes
0 answers

Filepicker can`t see other media except images/videos

I'm planning on creating an android app that will send sms using SEND_SMS, successful but I don't want the phone numbers to be hardcoded on the app. Tried using file pickers to read and parse sheets/xlsx/txt files but nothing works(can only see…
John JJ
  • 1
  • 2
0
votes
1 answer

Why the application closes when using xamarin essentials filepicker?

My application closes without throwing any exceptions when I try to use Xamarin.Essentials' FilePicker class. What did I do: added: And the code: async Task
0
votes
1 answer

How can I open txt file from Icloud drive using Xamarin.Essentials: File Picker?

Help me please about opening txt files on iPhone. private async Task ExecuteOpenFileCommandAsync() { Device.BeginInvokeOnMainThread(async () => { var customFileType = new FilePickerFileType(new…
Igor Strekha
  • 176
  • 3
  • 17