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

getFileSystemRepresentation(_:maxLength:)

Fills the provided buffer with a C string representing a local file system path. 提供されたバッファをあるローカルファイルシステムパスを表しているC文字列で満たします。

Declaration 宣言

func getFileSystemRepresentation(_ buffer: UnsafeMutablePointer<CChar>, 
                       maxLength maxBufferLength: Int) -> Bool

Parameters パラメータ

buffer

A buffer large enough to hold the path. On return, contains a null-terminated C string in file system representation. パスを保持するのに十分に大きいバッファ。戻りでは、ヌル終端されたC文字列をファイルシステム表現において返します。

maxBufferLength

The size of buffer in bytes (typically MAXPATHLEN or PATH_MAX). bufferのバイトでの大きさ(概してMAXPATHLENまたはPATH_MAX)。

Return Value 戻り値

Returns true if the URL could be converted into a file system representation, otherwise false. trueを返します、もしURLがファイルシステム表現へと変換されることができたならば、そうでなければfalse

Discussion 議論

The file system representation format is described in File Encodings and Fonts. ファイルシステム表現形式は、File Encodings and Fontsにおいて記述されます。

See Also 参照

Creating an NSURL Object NSURLオブジェクトを作成する