The
truncate() and
ftruncate() functions cause the regular file named by
path or referenced by
fd to be truncated to a size of precisely
length bytes.
If the file previously was larger than this size, the extra data is lost.
If the file previously was shorter, it is extended, and
the extended part reads as null bytes (\0).
The file offset is not changed.
If the size changed, then the st_ctime and st_mtime fields
(respectively, time of last status change and
time of last modification; see
stat(2))
for the file are updated,
and the set-user-ID and set-group-ID permission bits may be cleared.
With
ftruncate(), the file must be open for writing; with
truncate(), the file must be writable.
The above description is for XSI-compliant systems.
For non-XSI-compliant systems, the POSIX standard allows
two behaviours for
ftruncate() when
length exceeds the file length
(note that
truncate() is not specified at all in such an environment):
either returning an error, or extending the file.
Like most Unix implementations, Linux follows the XSI requirement
when dealing with native file systems.
However, some non-native file systems do not permit
truncate() and
ftruncate() to be used to extend a file beyond its current length:
a notable example on Linux is VFAT.