Initializer
init(fileURLWithFileSystemRepresentation:isDirectory:relativeTo:)
Initializes a URL object with a C string representing a local file system path.
URLオブジェクトをあるローカルファイルシステムパスを表しているC文字列で初期化します。
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
true
if the last path part is a directory, otherwise false
.
true
、もし最後のパス部分がディレクトリならば、そうでなければfalse
。
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オブジェクトを作成する
init?(string: String)
Initializes an NSURL object with a provided URL string.
NSURLオブジェクトをある提供されたURL文字列で初期化します。
init(fileURLWithPath: String)
Initializes a newly created NSURL referencing the local file or directory at path
.
新しく作成されたNSURLを初期化します、path
でのローカルのファイルまたはディレクトリを参照しています。