f_truncate

The f_truncate function truncates the file size.

FRESULT f_truncate (
  FIL* FileObject     /* Pointer to the file object */
);

Parameter

FileObject
Pointer to the open file object to be truncated.

Return Values

FR_OK (0)
The function succeeded.
FR_DENIED
The file has been opened in read-only mode.
FR_RW_ERROR
The function failed due to a disk error or an internal error.
FR_NOT_READY
The disk drive cannot work due to no medium in the drive or any other reason.
FR_INVALID_OBJECT
The file object is invalid.

Description

The f_truncate function truncates the file size to the current file R/W point. When the file R/W pointer is already pointing end of the file, there is no effect. This function is not supported in read-only configuration and minimization level of >=1.

References

f_open, f_lseek, FIL

Return