I\'m trying to write a large file, but ran into a problem.
I use long long for seeking a place to write, but can\'t write file more than 4,2Gb. What I forgot?
Mo
There's a function called _lseeki64() on Win32, and lseek64() on *nix. The iostream library, however, does not wrap them directly, you'll have to retrieve the file descriptor somehow, and do something about buffering.