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
0 answers

ClipData is always returned as null using android NoNonsense FilePicker

I am trying to use spacebowboy's NoNonsense FilePicker, but am having problems receiving the Uri. The intent call works just fine, but the receiving code is copied straight from the repository and I can't see how it's anything I could be doing…
Serelesis
  • 1
  • 2
0
votes
1 answer

filepicker _field changes to link

this is my code
<%= user.label :img,"Profile Picture",:class => "col-sm-3 control-label" %>
<%= user.filepicker_field :img, accept: 'image/jpeg,image/gif,image/png' , class: 'btn…
Hassan
  • 107
  • 1
  • 9
0
votes
0 answers

How to send files to js

I had a web page where the user could upload pictures and then draw on it. All the drawing stuff are programmed in javascript. After a new release, we want to provide to the user a specific set of images via the url. By exemple :…
Atnaize
  • 1,766
  • 5
  • 25
  • 54
0
votes
1 answer

Android - How to check if file manager is available?

My app is using a custom type of file that can be saved onto the external memory and shared. I want to use the file picker to pick one file and load it. Here is my code : Uri uri = Uri.fromFile("path/to/folder"); Intent intent = new…
Dan Chaltiel
  • 7,811
  • 5
  • 47
  • 92
0
votes
1 answer

Prevent Duplicate file uploads in FilePicker.io

I use FilePicker (now called FileStack) and I wanted to know if it's possible to prevent duplicate file uploads to a single container. For example, if I allow users to up upload some music files, how do I prevent them from adding the same music file…
Ryan Clark
  • 79
  • 5
0
votes
2 answers

Filepicker.io gives "does not register as an accepted file" error when extension is allowed

I have a filepicker.io instance where I am using the pickAndStore function to allow users to upload various files, however while testing Microsoft Visio I found the files are being blocked / denied upload by a yellow error that states it does not…
FlikstRR
  • 1
  • 2
0
votes
1 answer

Invalidate FilePicker URL once S3 upload is complete (without removing s3 file)

I am using FilePicker pickAndStore to store to S3. FilePicker stores a permanent reference to file from a publicly accessible URL (Blob.url) and of course one can obtain the file from the s3 key (Blob.key). Is it possible to invalidate FilePicker…
Madhav Jha
  • 863
  • 1
  • 8
  • 26
0
votes
1 answer

SSIS package to upload escel where user will be presented with a file picker window to choose file to be uploaded

I have a requirement wherein I will be executing an SSIS package from a command button on an MS Access front end. The requirement is to present a file picker window which will let user choose file to be uploaded and then once chosen it should be…
Manus
  • 869
  • 2
  • 10
  • 20
0
votes
2 answers

Android FilePicker dialog only working for some devices

I'm using the regular boiler-plate code for showing the File Picker dialog on android. After I get a file path, I'm uploading that file to my server using aQuery. However, the code is only working on my old samsung phone that runs on Android 4.1.2…
Harsh Nigam
  • 152
  • 3
  • 13
0
votes
1 answer

Filepicker in WP8.1 app did not show any photo

I need to make instrument, that allows users to choose photo from Gallery. After choosing photo, it will be shown to the user in ImageBox. Problem is, that when user chooses some photo in Gallery, Gallery closes, ImageBox stays empty. Code returns…
Artur Tychina
  • 105
  • 2
  • 8
0
votes
1 answer

Select only multiple csv files and make tabbed xlsx file gets error 52

I am trying to navigate to a folder with the function GetFilesUserForm then multi select csv files then with the Sub ImportCombineCSVsNavigate make a multi tabbed xlsx file I think the function GetFilesUserForm is working but…
xyz
  • 2,253
  • 10
  • 46
  • 68
0
votes
1 answer

Can I Store files locally with filepicker?

I want to store files in my local storage. Is it possible with file-picker? I've read the documents but couldn't figure out the possibility
Anil Kumar
  • 2,521
  • 7
  • 23
  • 40
0
votes
0 answers

FilePicker: How to know the source of uploading

I'm using filepicker in my application. After uploading it is returning a Blob object with details like size, name. How can i get Uploading source type from this?
Anil Kumar
  • 2,521
  • 7
  • 23
  • 40
0
votes
1 answer

Dropbox is not displayed in the filepicker dialog window

we are using filepicker and it works fine. But we are not able to upload the files by using the dropbox as it is not displayed in the filepicker dialog window. we set the services as services: ['COMPUTER', 'GMAIL', 'DROPBOX', 'SKYDRIVE',…
Nandini TM
  • 23
  • 3
0
votes
1 answer

FilePicker onerror function not getting called in Version 2 of Pick function

I switched to FilePicker V2, but the onError function when using the pick method is not getting called now. It works with Version 1. Can you please specify if this is a defect in Version 2 or whether the way to catch the error has been changed?