Instance Method
インスタンスメソッド
fileManager(_:shouldLinkItemAtPath:toPath:)
Asks the delegate if a hard link should be created between the items at the two paths.
2つのパスでの項目間にハードリンクが作成されるべきか、委任先に尋ねます。
Parameters
パラメータ
fileManager
The file manager object that is attempting to create the link.
リンクの作成を試みているファイルマネージャオブジェクト。
srcPath
The path or a file or directory that fileManager
is about to attempt to link.
fileManager
がまさにリンクを試みようとするパスまたはファイルまたはディレクトリ。
dstPath
The path or a file or directory to which fileManager
is about to attempt to link.
それに対してfileManager
がまさにリンクを試みようとするパスまたはファイルまたはディレクトリ。
Return Value
戻り値
true
if the operation should proceed, otherwise false
.
操作を続行すべきならばtrue
、そうでないならばfalse
。
Discussion
議論
If the item specified by destURL
is a directory, returning false
prevents links from being created to both the directory and its children.
destURL
によって指定された項目がディレクトリならば、false
を返すことは、ディレクトリとそれの子の両方が作成されることを防ぎます。
This method performs the same task as the fileManager(_:shouldLinkItemAt:to:)
method, which is preferred over this method in macOS 10.6 and later.
このメソッドは、macOS 10.6以降ではこのメソッドより好まれるfileManager(_:shouldLinkItemAt:to:)
メソッドと同じ業務を実行します。
See Also
参照
Related Documentation
関連文書