init?(string: String)
Initializes an NSURL object with a provided URL string.
NSURLオブジェクトをある提供されたURL文字列で初期化します。
init?(string: String, relativeTo : URL?)
Initializes an NSURL object with a base URL and a relative string.
NSURLオブジェクトをある基準URLと相対文字列で初期化します。
class func fileURL (withPath : String, isDirectory : Bool) -> URL
Initializes and returns a newly created NSURL object as a file URL with a specified path.
新しく作成されたNSURLオブジェクトをファイルURLとして初期化して返します、ある指定されたパスを持ちます。
init(fileURLWithPath : String, isDirectory : Bool)
Initializes a newly created NSURL referencing the local file or directory at
path
.
新しく作成されたNSURLを初期化します、path
でのローカルのファイルまたはディレクトリを参照しています。
class func fileURL (withPath : String) -> URL
Initializes and returns a newly created NSURL object as a file URL with a specified path.
新しく作成されたNSURLオブジェクトをファイルURLとして初期化して返します、ある指定されたパスを持ちます。
init(fileURLWithPath : String)
Initializes a newly created NSURL referencing the local file or directory at
path
.
新しく作成されたNSURLを初期化します、path
でのローカルのファイルまたはディレクトリを参照しています。
class func fileURL (withPathComponents : [String]) -> URL?
Initializes and returns a newly created NSURL object as a file URL with specified path components.
新しく作成されたNSURLオブジェクトをファイルURLとして初期化して返します、指定されたパス構成要素いくらかを持ちます。
init(resolvingAliasFileAt : URL, options: NSURL.BookmarkResolutionOptions)
Returns a new URL made by resolving the alias file at
url
.
新しいURLを返します、url
でのエイリアスファイルを解決することによって作られます。
init(resolvingBookmarkData : Data, options: NSURL.BookmarkResolutionOptions, relativeTo : URL?, bookmarkDataIsStale : UnsafeMutablePointer<ObjCBool>?)
Initializes a newly created NSURL that points to a location specified by resolving bookmark data.
新しく作成されたNSURLを初期化します、それはブックマークデータを解決することによって指定されるある位置を指し示します。
class func fileURL (withFileSystemRepresentation : UnsafePointer<CChar>, isDirectory : Bool, relativeTo : URL?) -> URL
Returns a new URL object initialized with a C string representing a local file system path.
新しいURLオブジェクトを返します、あるローカルファイルシステムパスを表しているC文字列表現で初期化されます。
init(fileURLWithFileSystemRepresentation : UnsafePointer<CChar>, isDirectory : Bool, relativeTo : URL?)
Initializes a URL object with a C string representing a local file system path.
URLオブジェクトをあるローカルファイルシステムパスを表しているC文字列で初期化します。