Initializer

init(path:)

Initializes a file wrapper instance whose kind is determined by the type of file-system node located by the path. ファイルラッパーインスタンスを初期化します、それのもつ種類はパスによって位置決めされるファイルシステムノードの型によって決定されます。

Declaration 宣言

convenience init?(path: String)

Parameters パラメータ

node

Pathname of the file-system node the file wrapper is to represent. ファイルラッパーが表すことになる、ファイルシステムノードのパス名。

Return Value 戻り値

File wrapper for node. nodeに対するファイルラッパー。

Discussion 議論

If node is a directory, this method recursively creates file wrappers for each node within that directory. nodeがディレクトリならば、このメソッドは、そのディレクトリ内部の各ノードに対して再帰的にファイルラッパーを作成します。

Special Considerations 特別な注意事項

Beginning with OS X v10.6, the preferred method of referring to files is with a file:// URL. Therefore, this method has been deprecated in favor of init(url:options:). OS X v10.6からは、ファイル参照の優先メソッドは、file:// URLを使います。したがって、init(url:options:)の方を支持して、このメソッドは非推奨となっています。

See Also 参照

Creating File Wrappers ファイルラッパーを作成する

Related Documentation 関連文書