Type Method 型メソッド

fileURL(withPath:isDirectory:)

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

Declaration 宣言

class func fileURL(withPath path: String, 
       isDirectory isDir: Bool) -> URL

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 expandingTildeInPath. If path is a relative path, it is treated as being relative to the current working directory. NSURLオブジェクトが表すパス。pathは、有効なシステムパスであるべきです、そして空のパスであってはいけません。pathがチルダで始まるならば、それは最初にexpandingTildeInPathで展開されなければなりません。pathが相対パスならば、それは現在の作業ディレクトリに相対的であるとして扱われます。

isDir

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

Return Value 戻り値

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

See Also 参照

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