Type Method 型メソッド

fileURLWithPath:isDirectory:

Initializes and returns a newly created NSURL object as a file URL with a specified path. 新しく作成されたNSURLオブジェクトをファイルURLとして初期化して返します、ある指定されたパスを持ちます。

Declaration 宣言

+ (NSURL *)fileURLWithPath:(NSString *)path 
               isDirectory:(BOOL)isDir;

Parameters パラメータ

path

The path that the NSURL object will represent. path should be a valid system path, and must not be an empty path. If path begins with a tilde, it must first be expanded with stringByExpandingTildeInPath. If path is a relative path, it is treated as being relative to the current working directory. NSURLオブジェクトが表すパス。pathは、有効なシステムパスであるべきです、そして空のパスであってはいけません。pathがチルダで始まるならば、それは最初にstringByExpandingTildeInPathで展開されなければなりません。pathが相対パスならば、それは現在の作業ディレクトリに相対的であるとして扱われます。

isDir

A Boolean value that specifies whether path is treated as a directory path when resolving against relative path components. Pass YES if the path indicates a directory, NO otherwise. pathが、相対パス構成要素を解決している時に、ディレクトリパスとしてみなされるかどうかを指定するブール値。YESを渡してください、もしpathがディレクトリを指し示すならば、NOをそうでなければ。

Return Value 戻り値

An NSURL object initialized with path. pathで初期化されたNSURLオブジェクト。

See Also 参照

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