- fileSystemRepresentationWithPath:
Returns a C-string representation of a given path that properly encodes Unicode strings for use by the file system.
与えられたパスのC文字列表現を返します、それはファイルシステムによって使うために適切にユニコード文字列をエンコードします。
NSString
object whose contents are derived from the specified C-string path.
NSString
オブジェクトを返します、それの持つ内容は指定されたC文字列パスから引き出されます。
Availability 有効性
Technology
- (NSString
*)stringWithFileSystemRepresentation:(const char *)str
length:(NSUInteger
)len;
string
A C string representation of a pathname. あるパス名のC文字列表現。
len
The number of characters in string
.
string
における文字数。
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
から変換されます。
Use this method if your code receives paths as C strings from system routines. このメソッドを、あなたのコードがパスをC文字列としてシステムルーチンから受け取るならば使ってください。
- fileSystemRepresentationWithPath: