Type Method 型メソッド

fileURLWithFileSystemRepresentation:isDirectory:relativeToURL:

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

Declaration 宣言

+ (NSURL *)fileURLWithFileSystemRepresentation:(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 new object. 新しいオブジェクトを返します。

Discussion 議論

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

See Also 参照

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