mio icon indicating copy to clipboard operation
mio copied to clipboard

How to use Mio to read and write large files

Open LoveChina-3000 opened this issue 2 years ago • 4 comments

Hi,May i ask a question? How to use Mio to read and write large files?Thank you

LoveChina-3000 avatar Apr 14 '22 09:04 LoveChina-3000

How large? MB or GB or TB?

spudwa avatar Apr 14 '22 10:04 spudwa

On a 32-bit computer, files larger than 8GB can be read and written. Is there any relevant example to refer to。Thank you

LoveChina-3000 avatar Apr 14 '22 11:04 LoveChina-3000

Hi, How to use mio to write a file which more than 8 GB. Thank you

LoveChina-3000 avatar Apr 14 '22 12:04 LoveChina-3000

32bit windows has a memory limit of 2gb, while you are using NTFS limits. mmap needs to be able allocate contiguous virtual memory so it's not going to happen unless you move to 64bit

spudwa avatar Aug 17 '22 11:08 spudwa