init(fileDescriptor : Int32)
init?(forReadingAtPath : String)
init(forReadingFrom : URL)
init?(forWritingAtPath : String)
init(forWritingTo : URL)
init?(forUpdatingAtPath : String)
init(forUpdating : URL)
init?(coder: NSCoder)
Availability 有効性
Technology
fileDescriptor
The POSIX file descriptor with which to initialize the file handle. それでファイルハンドルを初期化するPOSIXファイル記述子。
flag
true
if the returned file handle object should take ownership of the file descriptor and close it for you or false
if you want to maintain ownership of the file descriptor.
返されるファイルハンドルオブジェクトがファイル記述子の所有権をとってそれをあなたの代わりに閉じるならばtrue
、またはあなたがファイル記述子の所有権を保守したいならばfalse
。
An initialized file handle object. 初期化されたファイルハンドルオブジェクト。
If flag
is false
, the file descriptor you pass in to this method isn’t owned by the file handle object. In such a case, you’re responsible for closing the file descriptor at some point after disposing of the file handle object. If you want the file handle object to close the descriptor for you automatically, pass true
for the flag
parameter.
あなたがファイルハンドルオブジェクトにあなたの代わりに自動的に記述子を閉じてほしいならば、true
をflag
パラメータに渡してください。
init(fileDescriptor : Int32)
init?(forReadingAtPath : String)
init(forReadingFrom : URL)
init?(forWritingAtPath : String)
init(forWritingTo : URL)
init?(forUpdatingAtPath : String)
init(forUpdating : URL)
init?(coder: NSCoder)
func closeFile ()