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

initWithPath:

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

Declaration 宣言

- (id)initWithPath:(NSString *)path;

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 initWithURL:options:error:.

See Also 参照

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

Related Documentation 関連文書