[GH-ISSUE #759] File Manager > 2GB #500

Closed
opened 2026-02-27 15:50:39 +03:00 by kerem · 4 comments
Owner

Originally created by @thdal on GitHub (Feb 26, 2019).
Original GitHub issue: https://github.com/quasar/Quasar/issues/759

Hi Maxxor, I have been trying on different version of Quasar and every time when I try to download a file of more that 2 GB with the file manager I had an error "unable to read from File Stream" or "error reading file" in function of quasar's version. So is that the limit you've set? It's possible to do better.

hoping for an answer,
Cordialy

Originally created by @thdal on GitHub (Feb 26, 2019). Original GitHub issue: https://github.com/quasar/Quasar/issues/759 Hi Maxxor, I have been trying on different version of Quasar and every time when I try to download a file of more that 2 GB with the file manager I had an error "unable to read from File Stream" or "error reading file" in function of quasar's version. So is that the limit you've set? It's possible to do better. hoping for an answer, Cordialy
kerem 2026-02-27 15:50:39 +03:00
  • closed this issue
  • added the
    question
    label
Author
Owner

@MaxXor commented on GitHub (Mar 3, 2019):

There is no limitation, but it takes a while to transfer such a big file. The implemented file transfer is not the fastest. 😄 When exactly does it happen? In the middle of transferring the file or right at the beginning? Couldn't reproduce it yet with a 4GB file.

<!-- gh-comment-id:469067279 --> @MaxXor commented on GitHub (Mar 3, 2019): There is no limitation, but it takes a while to transfer such a big file. The implemented file transfer is not the fastest. :smile: When exactly does it happen? In the middle of transferring the file or right at the beginning? Couldn't reproduce it yet with a 4GB file.
Author
Owner

@dhuinda commented on GitHub (May 17, 2019):

This issue would require some work from the developers to be fixed. It is caused by the maximum size of an array (an array of bytes that makes up the file data), the default value for this array is 2,147,483,647 bytes, or 2 GB. Therefor, it can not read files larger than 2 GB.

<!-- gh-comment-id:493280784 --> @dhuinda commented on GitHub (May 17, 2019): This issue would require some work from the developers to be fixed. It is caused by the maximum size of an array (an array of bytes that makes up the file data), the default value for this array is 2,147,483,647 bytes, or 2 GB. Therefor, it can not read files larger than 2 GB.
Author
Owner

@MaxXor commented on GitHub (May 17, 2019):

Lol, Quasar doesn't read the whole file into an array.

<!-- gh-comment-id:493339311 --> @MaxXor commented on GitHub (May 17, 2019): Lol, Quasar doesn't read the whole file into an array.
Author
Owner

@dhuinda commented on GitHub (May 17, 2019):

Oh I see, it reads in chunks. My bad.

<!-- gh-comment-id:493597163 --> @dhuinda commented on GitHub (May 17, 2019): Oh I see, it reads in chunks. My bad.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/Quasar#500
No description provided.