init(fileDescriptor : Int32)
Creates and returns a file handle object associated with the specified file descriptor.
init(fileDescriptor : Int32, closeOnDealloc : Bool)
Creates and returns a file handle object associated with the specified file descriptor and deallocation policy.
init(forReadingFrom : URL)
Returns a file handle initialized for reading the file, device, or named socket at the specified URL.
指定されたURLでのファイル、デバイス、または名前付きソケットの読み込みのために初期化されるファイルハンドルを返します。
init?(forWritingAtPath : String)
Returns a file handle initialized for writing to the file, device, or named socket at the specified path.
指定されたパスでのファイル、デバイス、または名前付きソケットへの書き出しのために初期化されるファイルハンドルを返します。
init(forWritingTo : URL)
Returns a file handle initialized for writing to the file, device, or named socket at the specified URL.
指定されたURLでのファイル、デバイス、または名前付きソケットへの書き出しのために初期化されるファイルハンドルを返します。
init?(forUpdatingAtPath : String)
Returns a file handle initialized for reading and writing to the file, device, or named socket at the specified path.
指定されたパスでのファイル、デバイス、または名前付きソケットの読み書きのために初期化されるファイルハンドルを返します。
init(forUpdating : URL)
Returns a file handle initialized for reading and writing to the file, device, or named socket at the specified URL.
指定されたURLでのファイル、デバイス、または名前付きソケットの読み書きのために初期化されるファイルハンドルを返します。
init?(coder: NSCoder)
Returns a file handle initialized from data in an unarchiver.