filepicker Questions

2

I have a button on screen, when you click button I need to open some folder picker. I have searched for package, but I didn't found any package that also support Android and iOS. Does someone knows...
Danelle asked 3/8, 2021 at 9:53

1

i using extention file_picker in flutter width extention filter try { result = await FilePicker.platform.pickFiles( type: FileType.custom, allowedExtensions: ['jpeg', 'jpg', 'heic', 'pdf'], ); ...
Golter asked 22/6, 2021 at 11:39

4

Solved

I am using the File Picker Plugin to choose a file from a device. The file is chosen in the datatype of a PlatformFile, but I want to send the file to Firebase Storage and I need a regular File for...
Thrombus asked 12/12, 2020 at 22:7

1

After running pub get i am getting the following error (First time build) Because file_picker >=5.0.0 depends on ffi ^2.0.1 and open_file_safe 3.2.3 depends on ffi ^1.0.0, file_picker >=5.0.0...
Ginnifer asked 25/11, 2022 at 2:3

5

Solved

I am creating a Flutter project in which, I have a piece of data (JSON) that I want to Import from and Export to a location the user wants to. In order to achieve this, I require a File Picker plug...
Perplex asked 20/6, 2018 at 15:7

1

I have a form where I need to attach a file from the phone. I have been looking for a file picker but it can only access images, not files like pdf, doc, docx, etc. How to achieve this all in jetpa...
Recite asked 2/4, 2022 at 16:49

2

Can anyone please share complete solution for File Picker in Android 11 for both Internal and External Storage
Dirty asked 20/9, 2021 at 6:17

5

Solved

I am trying to start file chooser on a button click (composable function). Unable to use startActivityForResult(). @Composable fun SelectScreen() { Button(onClick = { val intent = Intent(Intent....

2

The following problem occured using Firefox v73 on Window 7: In my code i use a multi-file-picker in html to upload up to 100-files parallal: <input type="file" id="files" name="files" multipl...
Thursby asked 19/2, 2020 at 10:9

0

I need to pick files from the device, Here is my code, Intent intent = new Intent(Intent.ACTION_GET_CONTENT); intent.setType("*/*"); String[] mimeTypes = {"image/*", "application/pdf"}...
Fallacious asked 24/9, 2019 at 9:50

2

Solved

I am trying to upload a file using a WebView in Android. This is the code in use: @TargetApi(Build.VERSION_CODES.LOLLIPOP) @Override public boolean onShowFileChooser(WebView webView, final ValueC...
Wandie asked 1/4, 2019 at 3:22

2

In Android, one can use the ACTION_OPEN_DOCUMENT Intent to open the native file picker and select for example an .mp4 file. This is achived by setting the mime type to video/mp4 using the following...
Technetium asked 15/12, 2015 at 7:39

2

I'm using following method to call pick any file but it doesn't work properly. private void fileIntent(int file) { if ((ActivityCompat.checkSelfPermission(ICShowFileCabinetDetails.this, Manifest...
Perturb asked 28/8, 2017 at 6:37

2

Solved

Is there some 'select folder dialog' on android SDK ? I google it and i did not find anything. I mean that i looking for dialog that will popup and give me the option to select a path of folder ...
Corder asked 21/5, 2017 at 8:14

1

I am facing an issue while choosing a file from Downloads directory using ACTION_GET_CONTENT. If I delete any file in ES explorer or file manager in my local storage, those deleted files aren't re...
Navar asked 17/6, 2016 at 13:39

1

Solved

How i can pick mp3 file from sdcard in android preferenceScreen menu.. here is my preferenceScreen: <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> <Prefe...

2

Is there any way to start file picker for google drive in android app - to do something similar to this http://googleappsdeveloper.blogspot.com/2012/08/allowing-user-to-select-google-drive.html. I ...

1

Solved

I'm trying to let the user browse for a file with the FileOpenPicker class, but when I use the PickSingleFileAsync function with await, I get following error: 'IAsyncOperation' does not contain ...
Oxalis asked 26/8, 2015 at 22:34

1

Solved

I've simple HTML File control/s on my form. It's dynamic in nature, means user can upload one or multiple files. Its HTML is as follows : <input type="file" id="image_book" class="image_book up...

1

Solved

I am using my own custom file picker with TinyMCE 4's new file_picker_callback function. The documentation on this isn't great, so credit goes to Fred for getting me this far - https://stackoverflo...
Brittabrittain asked 23/7, 2014 at 0:32

3

Solved

Is there a good solution for picking a file in an android application? I need the user to be able to browse their SD card for a file they would like to load. However, it cannot use an outside...
Downspout asked 23/4, 2010 at 20:41

1

Possible Duplicate: Reading client side text file using Javascript I want to open a txt file at client, parse it with javascript and post parsed data to a server page with ajax. I hav...
Thetic asked 12/6, 2012 at 13:3

3

Solved

Is there any picker available to pick file from the SDCard or Device memory,like FilePicker available in Blackberry? If not ,then any alternative for doing this? Please help me. Thanks in ad...
Orangy asked 2/6, 2011 at 5:18
1

© 2022 - 2024 — McMap. All rights reserved.