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

How to set callback page and redirct_uri for file picker

I'm newbie with OneDrive API and using Microsoft OneDrive file picker for one web-app using javascript and while using WL.init(), it asks for Client_Id and Redirect_UI. I've created Client_Id using Live SDK app management site and added Redirect_UI…
Dipti Sheth
  • 159
  • 1
  • 2
  • 11
0
votes
1 answer

Can you make a filepicker upload public on S3?

I'd like the files I upload to S3 with Filepicker.io to be public. Is this possible?
nickponline
  • 25,354
  • 32
  • 99
  • 167
0
votes
1 answer

How to automatically load previously used files on Windows Store app startup

I've come across a scenario in my Windows Store app development that various websites indicate is not possible. Can someone please confirm if the following is possible in a Windows Store app and how it can be done programmatically? User taps on a…
Alexandru
  • 12,264
  • 17
  • 113
  • 208
0
votes
1 answer

Can't get URL of a file stored on filepicker, using node.js

Trying to find a solution for storing some files from a lil' app I'm currently building, I tried to use a filepicker node module and tried the simplest example I could create: app.get('/test', function(req, res) { fs.readFile('myFile.txt',…
hypervillain
  • 393
  • 1
  • 5
  • 18
0
votes
1 answer

Navigate to a different page from ContinueFileOpenPicker method

I'm using the FilePicker for Windows Universal apps and I'm trying to launch the File Picker from MainPage.xaml and then navigate to a different page (LoadPhoto.xaml) to render the selected image. I initially implemented my app so that I'd navigate…
0
votes
0 answers

onActivityResult not being called from preferences

I already have the right things to play audio files from RAW, and fool around with it but, here is what I want to do: I want to enable the user to select audio from sdcard. and choose that so the app play it for him. I have :
Shervin4030
  • 27
  • 1
  • 9
0
votes
1 answer

filepicker exportFile and popup blocker

I program a webapp which use ink filepicker for opening/saving text files from/to the cloud. In mobile browsers, when I open a file via : filepicker.pick({extension: '.txt'}, function(FPFile) { filepicker.read(FPFile, function(data) { …
0
votes
1 answer

Hinding system folder in File Picker

Question :- This code is working well for picking up the file but i want to hide system folders when I am running this code it also show me all android folder starting with "." I tried some things which you can already see in comments in my…
Kirtesh
  • 29
  • 1
  • 10
0
votes
1 answer

Choosing files saved internally on Android

How do I create a file picking activity in Android based on files that I've saved internally for the app? Like, the user uses my app and saves data internally to "scenario1", "scenario2", "scenario3". I want to be able to list all these options to…
0
votes
1 answer

Android Picking Sound File Path - Full Path Not Returned

I am trying to get the full path of a sound file on the SD card. This launches sound picker - I then use the Play Music app to select a file Intent intent = new Intent(); intent.setAction(Intent.ACTION_PICK); …
user3013243
  • 516
  • 1
  • 4
  • 19
0
votes
1 answer

How to speed up loading images from Filepicker?

W are using Filepicker as a upload tool for users' images. The app is written in Rails, so we are displaying images like this: = filepicker_image_tag @user.filepicker_url But this approach is kinda slow. We are using as a storage the default…
user984621
  • 46,344
  • 73
  • 224
  • 412
0
votes
3 answers

Permission denied to access property 'filepicker_comm_iframe'

Currently facing an issue with Filepicker's iframe in my application... my tools: Framework: Rails 4 (including turbolinks) API: Filepicker.io (JS) File type: Coffeescript My sample code: ready = -> filepicker_api_key =…
levelone
  • 2,289
  • 3
  • 16
  • 17
0
votes
1 answer

Filepicker gem for Rails - how can I set up my own Javascript code?

I am trying to extend the basic functionality of this gem. The basic functionality works well. What I am trying to do: :javascript var filepicker = filepicker.setKey('my key'); function check_mimetype(file_data){ …
user984621
  • 46,344
  • 73
  • 224
  • 412
0
votes
0 answers

Using FPSaveController how can we upload local files

I tried filepicker.io in IOS project. it's not provided dataURL in FPSaveController's object. Also don't know how can I use - (void) saveFileName:(NSString *)filename To:(NSString *)path method to save file on Amazon Server. If I use…
rakita
  • 39
  • 7
0
votes
1 answer

how filepicker work on android apps with javascript

I write an app with javascript and convert to .apk for android apps(with phonegap) but I can just select file from my gallery and music list. I googled and find filepickr example that seems good. but I do not know how to use it.what should I do to…
BeginnerProgrammer
  • 664
  • 3
  • 13
  • 27