I investigate the problem of file upload using html5, and I have theoretical question: has html5 any limits for file size for uploading? For example, can I upload files with size ~500Gb?
P.S.: I use FileReader api for reading file.
Ok. This problem is resolved.
But as it explains in FileReader API:
This interface provides methods to read File objects or Blob objects into memory...
As I understood correctly, I can't read file with size which is more than available RAM?