func string(withFileSystemRepresentation : UnsafePointer<CChar>, length: Int) -> String
NSString
object whose contents are derived from the specified C-string path.
NSString
オブジェクトを返します、それの持つ内容は指定されたC文字列パスから引き出されます。
Availability 有効性
Technology
func fileSystemRepresentation(withPath path: String
) -> UnsafePointer
<CChar
>
path
A string object containing a path to a file. This parameter must not be nil
or contain the empty string.
あるファイルへのパスを含んでいる文字列オブジェクト。このパラメータは、nil
であってはいけません、または空の文字列を含んではいけません。
A C-string representation of path
that properly encodes Unicode strings for use by the file system.
path
のC文字列表現、それはファイルシステムによって使うためのユニコード文字列を適切にエンコードするものです。
Use this method if your code calls system routines that expect C-string path arguments. If you use the C string beyond the scope of the current autorelease pool, you must copy it. C文字列パス引数を期待するシステムルーチンをあなたのコードが呼び出すならば、このメソッドを使ってください。あなたがこのC文字列を現在のオートリリースプールのスコープを越えて使用するならば、あなたはそれをコピーすべきです。
This method raises an exception if path
is nil
or contains the empty string. This method also throws an exception if the conversion of the string fails.
このメソッドは、path
がnil
であるか空文字列を含むならば、例外を引き起こします。このメソッドはまた、文字列の変換が失敗するならば、例外をスローします。
func string(withFileSystemRepresentation : UnsafePointer<CChar>, length: Int) -> String
NSString
object whose contents are derived from the specified C-string path.
NSString
オブジェクトを返します、それの持つ内容は指定されたC文字列パスから引き出されます。