Instance Method
インスタンスメソッド
truncate(atOffset:)
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
宣言
func truncate(atOffset offset: UInt64
) throws
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
ファイルに関する操作
func close()
Disallows further access to the represented file or communications channel and signals end of file on communications channels that permit writing.
表現されたファイルまたは通信経路へのもっと先のアクセスを禁止します、そして書き込み許可する通信経路上のファイルの終端を合図します。
func synchronize()
Causes all in-memory data and attributes of the file represented by the file handle to write to permanent storage.