Instance Method
インスタンスメソッド
fileManager(_:shouldLinkItemAt:to:)
Asks the delegate if a hard link should be created between the items at the two URLs.
2つのURLでの項目間にハードリンクが作成されるべきか、委任先に尋ねます。
Declaration
宣言
optional func fileManager(_ fileManager: FileManager
,
shouldLinkItemAt srcURL: URL
,
to dstURL: URL
) -> Bool
Parameters
パラメータ
fileManager
The file manager object that is attempting to create the link.
リンクの作成を試みているファイルマネージャオブジェクト。
srcURL
The URL identifying the new hard link to be created.
作成される新しいハードリンクを識別するURL。
dstURL
The URL identifying the destination of the link.
リンクの行き先を識別するURL。
Return Value
戻り値
true
if the link should be created or false
if it should not be created.
リンクが作成されるすべきならば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(_:shouldLinkItemAtPath:toPath:)
method and is preferred over that method in macOS 10.6 and later.
このメソッドは、fileManager(_:shouldLinkItemAtPath:toPath:)
メソッドと同じ業務を実行して、そのメソッドより、macOS 10.6以降では好まれます。
See Also
参照
Related Documentation
関連文書