Instance Method
インスタンスメソッド
addSymbolicLink(withDestination:preferredFilename:)
Creates a symbolic-link file wrapper pointing to a given file-system node and adds it to the receiver, which must be a directory file wrapper.
ある与えられたファイルシステムノードを指すシンボリックリンクファイルラッパーを作成してそれをレシーバに加えます、それはディレクトリファイルラッパーでなければなりません。
Declaration
宣言
func addSymbolicLink(withDestination path: String
,
preferredFilename filename: String
) -> String
Parameters
パラメータ
node
Pathname the new symbolic-link file wrapper is to reference.
新しいシンボリックリンクファイルラッパーが参照することになるパス名。
preferredFilename
Preferred filename for the new symbolic-link file wrapper.
新しいシンボリックリンクファイルラッパーに対する優先ファイル名。
Return Value
戻り値
Dictionary key used to store the new file wrapper in the directory’s list of file wrappers. See Accessing File Wrapper Identities in File System Programming Guide for more information.
新しいファイルラッパーをディレクトリの持つファイルラッパーのリストに格納するために使われる辞書キー。Accessing File Wrapper IdentitiesをFile System Programming Guideにおいて、さらなる情報のために見てください。
Discussion
議論
Beginning with OS X v10.6, the preferred method of referring to files is with a file://
URL. Instead of using this method, you can instantiate NSFileWrapper
with one of the initializers, set its preferredFilename
property if necessary, and pass the result to addFileWrapper(_:)
.
OS X v10.6からは、ファイル参照の優先メソッドは、file://
URLを使います。このメソッドを使うよりむしろ、あなたはNSFileWrapper
をイニシャライザの1つでインスタンス化して、それのpreferredFilename
プロパティを必要ならば設定して、そして結果をaddFileWrapper(_:)
に渡すことができます。
This method raises NSInternalInconsistencyException
if the receiver is not a directory file wrapper.
このメソッドは、レシーバがディレクトリファイルラッパーでないならば、NSInternalInconsistencyException
を引き起こします。
This method raises NSInvalidArgumentException
if you pass nil
or an empty value for preferredFilename
.
このメソッドは、NSInvalidArgumentException
を引き起こします、もしあなたがnil
または空の値をpreferredFilename
に渡すならば。
See Also
参照
Accessing File-Wrapper Information
ファイルラッパー情報にアクセスする
func removeFileWrapper(FileWrapper)
Removes a child file wrapper from the receiver, which must be a directory file wrapper.
子ファイルラッパーをレシーバから取り除きます、それはディレクトリファイルラッパーでなければなりません。
func addFile(withPath: String) -> String
Creates a file wrapper from a given file-system node and adds it to the receiver, which must be a directory file wrapper.
ファイルラッパーをある与えられたファイルシステムノードから作成してそれをレシーバに加えます、それはディレクトリファイルラッパーでなければなりません。
Deprecated
非推奨
func symbolicLinkDestination() -> String
Provides the pathname referenced by the file wrapper object, which must be a symbolic-link file wrapper.
ファイルラッパーオブジェクト、それはシンボリックリンクファイルラッパーである必要があります、によって参照されるパス名を提供します。
Deprecated
非推奨
var symbolicLinkDestinationURL: URL?
The URL referenced by the file wrapper object, which must be a symbolic-link file wrapper.
ファイルラッパーオブジェクトによって参照されるURL、それはシンボリックリンクファイルラッパーでなければなりません。