largefilecapable
Largefilecapable is an informal descriptor used in software documentation to indicate that a component, such as an application, library, or system, can operate on large files beyond traditional size limits. The core idea is that the software supports large-file methods, typically by using 64-bit file offsets and related APIs so that files larger than 2 GiB (and in many cases much larger) can be opened, read, written, and navigated reliably.
Large-file capability is relevant across operating systems, programming languages, libraries, and tools. In practice, it is
Achieving large-file capability often involves changes to data types, I/O functions, and memory-mapping behavior. Developers must
Not all tools and libraries are large-file capable by default; legacy code and older libraries may still
See also: Large File Support, off_t, _FILE_OFFSET_BITS, fseeko, ftello, mmap, 64-bit file systems, Git LFS.