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
1
vote
1 answer

How to Hide FilePicker images from Gallery? and How to store those images in a folder inside external storage?

I am getting customers documents using FilePicker . After opening FilePicker it shows options to take images from gallery as well as camera . After taking images , images are visible inside gallery but But i don't want images to be visible inside…
Rashid Kalhoro
  • 340
  • 4
  • 14
1
vote
1 answer

Android attachment / file picker into InputStream string

I want to create a similar function as below image. Allow user to select image / pdf file from device and convert the file into inputstream as string and sent to server. I had go through this Attaching a file of any type in Android application? and…
Shawn.Y
  • 181
  • 3
  • 14
1
vote
0 answers

how to choose any type of file and upload it to server?

I'm trying to choose any type of files like .pdf or .doc and ect and then upload it to server with retrofit library. I'm able to choose image and video and music from my files and send it easily to server. but in api 19 and above, I can't have…
Azin Nilchi
  • 849
  • 1
  • 10
  • 24
1
vote
0 answers

How to provide a path to start with to Android's built-in file selector?

I open Android's built-in file selector using the following code: Intent myIntent = new Intent(Intent.ACTION_GET_CONTENT); myIntent.setType("text/*"); myIntent.addCategory(Intent.CATEGORY_OPENABLE); startActivityForResult(myIntent, 100); The file…
Hans
  • 11
  • 4
1
vote
1 answer

Xamarin forms: select and pick multiple document files(doc, pdf, xlx, etc...) at once Cross-Platform

I want to select and pick only multiple document files(such as: doc, pdf, xlx, txt, etc...) at once in the file picker dialogue. How to do that? I have seen pt.Xamarin.Plugin.FilePicker and Xamarin.Plugin.FilePicker plugins but unable to fulfill my…
1
vote
0 answers

Xam.Plugin.Filepicker not doing anything after picking file

I am using Xam.Plugin.FilePicker for picking the file in my Xamarin.Forms app. (I'm using a PCL project and added reference to all projects). This is my button for calling the event:
Sameer Kamran
  • 227
  • 4
  • 15
1
vote
1 answer

Xamarin.FilePicker returns null FileData objects

I am trying to implement the package "FilePicker" on xamarin.Forms, but unfortunately without success. Here's the code in XAML.cs: using System; using Xamarin.Forms; using Plugin.FilePicker; using Plugin.FilePicker.Abstractions; namespace…
Ori Barmatz
  • 41
  • 1
  • 5
1
vote
0 answers

TypeError: gapi.client is undefined error while downloading files from file picker

I have implemented a google file picker in HTML and JS. I have created a client credentials and in the verge of downloading the files from file picker. My code is My website
1
vote
1 answer

/storage/emulated/0 IS BLANK. (using nbsp-team/ Material File Picker)

I am having trouble with using nbsp-team/ Material File Picker When I was testing it on my phone a LG-G2 Mini running android lollipop and my tablet a Samsung Tab8.4 running Android Kitkat 4.4 the directories were able to load, I can navigate…
RFA
  • 771
  • 1
  • 5
  • 14
1
vote
2 answers

Unable to select Google Drive files on iOS

I'm using React Native and this library to pick files in my app. Native Google Drive files (docs, sheets, slides) started appearing to be unselectable on iOS, meanwhile on Android they appear selectable as PDF (it seems they are automatically…
carla
  • 1,970
  • 1
  • 31
  • 44
1
vote
1 answer

Select a picture and upload android

Here is the problem... I'm trying to create an app that allows you to upload an image or sound recording to a database along with some information, The upload part isn't a problem, what I would like to do is have 3 options, take a photo, record a…
James
  • 486
  • 1
  • 9
  • 24
1
vote
1 answer

File access denied in C# uwp

I am solving one issue. I am developing uwp app and I need to get sha256 hash of file selected with filepicker. I have complete part with filepicker, but when I select file from my computer with filepicker and I want to check hash of this file, I…
Karel_cz
  • 133
  • 1
  • 11
1
vote
0 answers

Error in sending file(blob) to SendBird react-native chat

I am trying to send an image or txt file in chat. I am using SendBird react-native sdk (https://docs.sendbird.com/javascript). FilePickerManager.showFilePicker(null, (response) => { console.log('Response = ', response); if…
Rahul Gupta
  • 116
  • 6
1
vote
1 answer

File Not Found after File Picked

First, I would like to apologize if this is a simplistic error. I'm mostly self taught, what I know is incredibly sporadic, and could well be haphazard. I'm working on an app which works as a password manager. It has a backup and restore function. I…
user5330423
1
vote
2 answers

Pick any file using intent in android

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.permission.WRITE_EXTERNAL_STORAGE) !=…
SARATH V
  • 500
  • 1
  • 7
  • 33