I am investigating the problem of downloading files using html5, and I have a theoretical question: does html5 have any restrictions on the file size for downloading? For example, is it possible to upload ~ 500 GB files?
PS: I use FileReader api to read the file.
Ok This issue has been resolved.
But as explained in the FileReader API:
This interface provides methods for reading File or Blob objects in memory ...
As I understand correctly, I can’t read a file with a size that is larger than the available RAM?
source
share