Working with files in c++ unmanaged
-
Hello I want to work with files unmanaged. I've been using fstream for file i/o but the problem is that if the file is greater than the maximum value of long I am not able to seek within it since the offset in the seek command doesn't accept values greater than long. Is there any other way I should work with files ? (unmanaged, not using system.dll) Clint
-
Hello I want to work with files unmanaged. I've been using fstream for file i/o but the problem is that if the file is greater than the maximum value of long I am not able to seek within it since the offset in the seek command doesn't accept values greater than long. Is there any other way I should work with files ? (unmanaged, not using system.dll) Clint
The Win32 file APIs will work with 64-bit offsets... CreateFile() SetFilePointer() etc. File Management Functions[^] Mark