- fileManager:shouldLinkItemAtPath:toPath:
- fileManager:shouldProceedAfterError:linkingItemAtURL:toURL:
- fileManager:shouldProceedAfterError:linkingItemAtPath:toPath:
Availability 有効性
Technology
- (BOOL)fileManager:(NSFileManager
*)fileManager
shouldLinkItemAtURL:(NSURL
*)srcURL
toURL:(NSURL
*)dstURL;
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。
YES
if the link should be created or NO
if it should not be created.
リンクが作成されるすべきならばYES
またはそれが作成されるべきでないならばNO
。
If the item specified by dest
is a directory, returning NO
prevents links from being created to both the directory and its children.
dest
によって指定された項目がディレクトリならば、NO
を返すことは、ディレクトリとそれの子の両方が作成されることを防ぎます。
This method performs the same task as the file
method and is preferred over that method in macOS 10.6 and later.
このメソッドは、file
メソッドと同じ業務を実行して、そのメソッドより、macOS 10.6以降では好まれます。
- fileManager:shouldLinkItemAtPath:toPath:
- fileManager:shouldProceedAfterError:linkingItemAtURL:toURL:
- fileManager:shouldProceedAfterError:linkingItemAtPath:toPath:
- linkItemAtURL:toURL:error:
- linkItemAtPath:toPath:error: