Instance Method インスタンスメソッド

truncateAtOffset:error:

Truncates or extends the file represented by the file handle to a specified offset within the file and puts the file pointer at that position.

Declaration 宣言

- (BOOL)truncateAtOffset:(unsigned long long)offset 
                   error:(out NSError * _Nullable *)error;

Parameters パラメータ

offset

The offset within the file that marks the new end of the file.

Discussion 議論

If the file is extended (if offset is beyond the current end of file), the added characters are null bytes. ファイルが延長されるならば(offsetが現在のファイル終端を越えるならば)、加えられる文字はnullバイトです。

See Also 参照

Operating on a File ファイルに関する操作