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

initFileURLWithFileSystemRepresentation:isDirectory:relativeToURL:

Initializes a URL object with a C string representing a local file system path. URLオブジェクトをあるローカルファイルシステムパスを表しているC文字列で初期化します。

Declaration 宣言

- (instancetype)initFileURLWithFileSystemRepresentation:(const char *)path 
                                            isDirectory:(BOOL)isDir 
                                          relativeToURL:(NSURL *)baseURL;

Parameters パラメータ

path

A null-terminated C string in file system representation containing the path to represent as a URL. If this path is a relative path, it is treated as being relative to the current working directory. URLとして表すことになるパスを含んでいるファイルシステム表現でのヌル終端されたC文字列。このパスが相対パスならば、それは現在の作業ディレクトリに相対的であるとして扱われます。

isDir

YES if the last path part is a directory, otherwise NO. YES、もし最後のパス部分がディレクトリならば、そうでなければNO

baseURL

The base URL for the new URL object. This must be a file URL. If path is absolute, this URL is ignored. 新しいURLオブジェクトに対する基準URL。これはファイルURLでなければなりません。pathが絶対的ならば、このURLは無視されます。

Return Value 戻り値

Returns the initialized object. 初期化されたオブジェクトを返します。

Discussion 議論

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

See Also 参照

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