Disable auto uploading with Filepicker.io - filepicker.io

Is there a way to disable auto uploading with Filepicker.io? I'd like to be able to select a couple of files and then explicitly click an 'Upload' button to being the upload process. This would be especially handy for the pickMultiple function as users may want to select files from various folders on their system.

As mentioned by Liyan in the above comment, this is currently not possible with their API.

Related

Is it possible to set my flutter app as default action to open files of specific types?

I've created flutter app that opens files of specific types (documents of variouos formats). Currently my app provides its own file browser, so one can select a document there and open it.
But is it possible to assign my app as the default action when clicking documents at any other file manager? Of course I need to perform this settings' adjustment right from my app.
Is it possible?
I cannot find any information on it.
Thanks in advance.
This is what you need: https://flutter.dev/docs/get-started/flutter-for/android-devs#how-do-i-handle-incoming-intents-from-external-applications-in-flutter
Also, take a look at how this is done in pure Android. You will need to change Android code, flutter can't handle this himself. https://stackoverflow.com/a/5097734/3222189

How to initiate a file download using a crossrider request?

I'm storing custom images on our servers. I'd like to have the user download the images using our plugin. When I send the request to the server I can see that it is started correctly but the file save dialog never comes up.
Does anyone know how to do this or can point me to an example?
Thanks!
In general, for security reasons, extensions created on Crossrider or otherwise do not provide functionality to access/save to the local files system. There are various workaround suggestions on various Stack Overflow threads (e.g. Chrome extension: How to save a file on disk) that may work on certain browsers. Whilst Crossrider does not support or guarantee that they will work, you can of course try to make them work in your Crossrider extension.
[Disclosure: I am a Crossrider employee]

Box API Saver popup

Is there anything available in the Box API equivalent to this Dropbox Saver?
https://www.dropbox.com/developers/dropins/saver
I want users to be able to pick a specific folder to upload to.
If not is there any other way to achieve this?
Check out the Box File Picker. This will handle authentication and folder selection. It doesn't do the 'upload file to folder' part of the Dropbox Saver. If that's your ultimate goal you may need to add a bit of additional code.

how to create multiplatform file browser in ionic

I need help. I'm trying to create a multiplatform mobile application. One of the functionalities is a local file browser that will allow user to select a directory and create a list of file in this directory. I've already spent couple of hours on that issue and I can not find any solution for that.
I've checked http://ngcordova.com/docs/plugins/file/
But if I understand it correctly it is used when I already have a file, it not allows user to pick the directory.
I don't need anything fancy, it should as simple as possible
The Cordova FileSystem plugin (and ngCordova's wrapper) provide the ability the read directories from the file system. They do not provide any UI, so you would use the plugin to ask for a list of directories and then render it as you see fit. (A UL, a table, whatever.) To "browse" you could use a click handler on the list of directories such that when clicked, you then get the files/subdirectories of that folder. Again, the FS plugin adds support for doing that.

tinymce file browsers multiple file source

I am doing some updates to a site I have developed over the last few years. It has grown rather erratically (I tried to plan ahead, but with this site it has taken some odd turns).
Anyway, the site has a community blog ( blog.domain.com - used to be domainblog.com) ) and users with personal areas ( user1.domain.com, user2.domain.com, etc ).
The personal areas have standard page content that the user can use, or add snippets of text to partially customize. Now the owner wants the users to be able to create their own content.
Everything is done up to using a file browser.
I need a browser that will allow me to do the following:
the browser needs to be able to browse the common files at blog.domain.com/files and the user files at user_x.domain.com/files
the browser will also need to be able to differentiate between the two and generate the appropriate image url.
of course, the browser access to the user files will need to be dynamic and only show those files particular to the user (along with the common files)
I also need to be able to set a file size for images
the admin area is in a different directory than either the blog or the user subdomains.
general directory structure
--webdir--
|--client --
|--clientsite--
|--blog (blog.domain.com)
|--sites--
|--main site (domain.com)
|--admin (admin.domain.com)
|--users--
|--user1 (user1.domain.com)
|--user2 (user2.domain.com)
...etc.
I have tried several different browsers and using symlinks but the browsers don't seem to be able to follow them. I am also having trouble even setting them to use a directory that isn't the default.
what browser would you recommend? what would I need to customize to make it work.
TIA
ok, since I have not had any responses to this question, I guess I will have to do a work around and then see about writing a custom file browser down the road.