Re: How to deal with big-size files??
- From: "dmtabs12@xxxxxxxxx" <dmtabs12@xxxxxxxxx>
- Date: Mon, 31 Dec 2007 08:16:26 -0800 (PST)
On Dec 31 2007, 11:59 pm, "هنداوى" <3D.v.Wo...@xxxxxxxxx> wrote:
What can i do to open , write and seek in file with size 2 GB or more
I know that you r limited with int type size which is 32-bit but how
programs like gzip , zip read and write from files with big size like
2-GB
how can i break this limit in C or even C++
In Win32, you can use LARGE_INTEGER structure, and the APIs support 64-
bit integers.
Many compilers have built-in support for 64-bit integers, such as
__int64 in Microsoft C++ compiler.
However, it seems that standard C functions do not support 64-bit
integers.
.
- References:
- How to deal with big-size files??
- From: هنداوى
- How to deal with big-size files??
- Prev by Date: Re: How to deal with big-size files??
- Next by Date: Re: How to deal with big-size files??
- Previous by thread: Re: How to deal with big-size files??
- Next by thread: Re: How to deal with big-size files??
- Index(es):
Relevant Pages
|