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

stringWithFileSystemRepresentation:length:

Returns an NSString object whose contents are derived from the specified C-string path. NSStringオブジェクトを返します、それの持つ内容は指定されたC文字列パスから引き出されます。

Declaration 宣言

- (NSString *)stringWithFileSystemRepresentation:(const char *)str 
                                          length:(NSUInteger)len;

Parameters パラメータ

string

A C string representation of a pathname. あるパス名のC文字列表現。

len

The number of characters in string. stringにおける文字数。

Return Value 戻り値

An NSString object converted from the C-string representation string with length len of a pathname in the current file system. あるNSStringオブジェクト、現在のファイルシステムでのあるパス名のlen長さを持つC文字列表現stringから変換されます。

Discussion 議論

Use this method if your code receives paths as C strings from system routines. このメソッドを、あなたのコードがパスをC文字列としてシステムルーチンから受け取るならば使ってください。

See Also 参照

Converting File Paths to Strings ファイルパスを文字列へ変換する