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

OneDrive Javascript Filepicker 7.2 with accesstoken

Through a separate call I have a (valid) refreshtoken for a user (using OIDC). Using this refreshtoken, I retrieve a new accesstoken and now want to use that in the filepicker, to enable automatic sign-on without having to enter username and…
Koos Gadellaa
  • 1,220
  • 7
  • 17
0
votes
2 answers

Android Java filepicker choose application to pick file

Say i want to upload a picture or a text document when i click on the button to chose the file how do i make it so that it shows a bunch a popup of applications i can chose from to look at files and select on for the upload as in this picture i…
Knack Kwenie
  • 377
  • 2
  • 4
  • 20
0
votes
1 answer

Access and File Picker

I want to fill a textbox with a file path so that I can then add the filepath as a hyperlink in a record. I created a button and wrote this subroutine: Private Sub Browsebutt_Click() Dim fd As Object Set fd = Application.FileDialog(3)…
nearchos
  • 43
  • 1
  • 10
0
votes
1 answer

Xamarin Android - FilePickerActivity - Cancels For No Reason

I have some code for picking a file on Android. I picked it from the web somewhere. Actually, the code works in one scenario, but in my app, it doesn't work. Android thinks that the user has cancelled the file pick when they actually haven't. Here's…
Christian Findlay
  • 6,770
  • 5
  • 51
  • 103
0
votes
1 answer

UWP, C++/Cx FileOpenPicker

Does anyone know what I'm doing wrong with this. // STORAGE FILE StorageFile^ saveFile; // FILE PICKER, FOR SELECTING A SAVE FILE FileOpenPicker^ filePicker = ref new FileOpenPicker; // ARRAY OF FILE TYPES Array^…
Gavin Hannah
  • 161
  • 9
0
votes
1 answer

Trouble with FilePickers in Unity Hololens development

I found a terrific reference on how to get started with file pickers. But with that being said, I am not able to get the provided code working for my Unity Hololens app. My scenario: I've a file, lets say an object file, like such, 3DModel.obj. I…
jtth
  • 876
  • 1
  • 12
  • 40
0
votes
1 answer

Local file upload to S3 using Filepicker on Android device

I am trying to upload local video files from Android App to S3 bucket using Filepicker (https://www.filepicker.io). As per github documentation, below is the sample code. The url mentioned below is for the local file url, however, I would like to…
Babs
  • 333
  • 7
  • 18
0
votes
1 answer

Android : Document and photo selector intent

In my android application i need a file picker that only pick images and document.I have implemented that but it will pick other files like videos.I only need to pick documents like pdf,excel,txt,etc.. and images and all those under a file size of…
KJEjava48
  • 1,967
  • 7
  • 40
  • 69
0
votes
1 answer

Copy image to resources Xamarin

I have a Xamarin Forms project in which I need the user to be able to "load" an image. I can already press a button and search for a file using FilePicker like this: async void OnUpload(object sender, EventArgs e) { try …
Josemafuen
  • 682
  • 2
  • 16
  • 41
0
votes
2 answers

Xam.Plugin.FilePicker Works fine but can't get file

I'm using the Xam.Plugin.FilePicker NUGet version 1.1.0 on a Xamarin.Android.Support.v4 Fragment and when I use the file picker it works fine but when I get a file the byte array is empty and the file name is only the name of the file without the…
0
votes
2 answers

"Select all" option for FilePicker

Is there a possibility to add a "Select all" option if I call the PickMultipleFilesAsync method of a FilePicker object. // Create the songs picker var songsPicker = new FileOpenPicker(); songsPicker.SuggestedStartLocation =…
0
votes
2 answers

Xamarin: Xam.Plugin.FilePicker: Only one operation can be active at a time

I am using the Xam.Plugin.FilePicker on xamarin android from https://github.com/Studyxnet/FilePicker-Plugin-for-Xamarin-and-Windows If user selected an image from the picker, everything is fine. When user cancel or didn't select any of the file,…
LittleFunny
  • 8,155
  • 15
  • 87
  • 198
0
votes
1 answer

Reading Values from Known file located on system

I'm new to Stack Overflow, otherwise I would have commented to the primary question in this post... UWP apps accessing files from random location on system My situation is similar, but different. It seems that in the post above, that they are trying…
ekgcorp
  • 165
  • 1
  • 11
0
votes
1 answer

FileOpenPicker windows 10 Mobile

I want do an uwp app where I want use FileOpenPicker but the app work only on windows 10 and not on windows 10 mobile On windows 10 mobile my app crash...and the exception message is: "Element not found. (Exception from HRESULT: 0x80070490)" This is…
sami54
  • 123
  • 1
  • 13
0
votes
2 answers

File picker with ability to select folder to be used on a webpage

Basically what we need is an filepicker that can be used on a webpage to enable the user to select files and/or folders. BUT, we only need to be able to get the local (client side) filepaths for the selected files via javascript, to later be used…
emaz
  • 1
  • 1
  • 2