mirror of
https://github.com/quasar/Quasar.git
synced 2026-04-26 07:45:57 +03:00
[GH-ISSUE #759] File Manager > 2GB #500
Labels
No labels
bug
bug
cant-reproduce
discussion
duplicate
easy
enhancement
help wanted
improvement
invalid
need more info
pull-request
question
wont-add
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/Quasar#500
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
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
@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.
@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.
@MaxXor commented on GitHub (May 17, 2019):
Lol, Quasar doesn't read the whole file into an array.
@dhuinda commented on GitHub (May 17, 2019):
Oh I see, it reads in chunks. My bad.