Top "Fileapi" questions

Use this tag for questions related to the W3C File API.

Youtube Blob urls don't work in browsers but in src

I know that there are no blob urls only objects. I made my own blob object for a video buffer …

javascript url blob fileapi media-source
What is the max number of files to select in an HTML5 [multiple] file input?

I have 64000 small images I want to upload to my website (using existing validation, so no FTP etc). I've created …

html file-upload fileapi html-input
Create a FileList and copy it to a File input

I'm trying to create a drag and drop area that will get dataTransfer items by webkitGetAsEntry and check if the …

javascript html google-chrome fileapi
Copying a file using Cordova

I've been trying to copy file named versions.txt from applicationDirectory to externalApplicationStorageDirectory using cordova but code fails. here is …

cordova fileapi
Reading multiple files in a loop using HTML5 File API

I am using the HTML5 File API to read binary files. The user can select multiple files and then click …

javascript html fileapi
HTML5 File API crashes Chrome when using readAsDataURL to load a selected image

Here's my sample code: var input = document.createElement('input'); input.type = 'file'; document.body.appendChild(input); input.addEventListener('change', function(){ …

javascript html google-chrome fileapi