- fileManager:shouldLinkItemAtURL:toURL:
- fileManager:shouldProceedAfterError:linkingItemAtURL:toURL:
- fileManager:shouldProceedAfterError:linkingItemAtPath:toPath:
Availability 有効性
Technology
- (BOOL)fileManager:(NSFileManager
*)fileManager
shouldLinkItemAtPath:(NSString
*)srcPath
toPath:(NSString
*)dstPath;
fileManager
The file manager object that is attempting to create the link. リンクの作成を試みているファイルマネージャオブジェクト。
srcPath
The path or a file or directory that file
is about to attempt to link.
file
がまさにリンクを試みようとするパスまたはファイルまたはディレクトリ。
dstPath
The path or a file or directory to which file
is about to attempt to link.
それに対してfile
がまさにリンクを試みようとするパスまたはファイルまたはディレクトリ。
YES
if the operation should proceed, otherwise NO
.
操作を続行すべきならば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, which is preferred over this method in macOS 10.6 and later.
このメソッドは、macOS 10.6以降ではこのメソッドより好まれるfile
メソッドと同じ業務を実行します。
- fileManager:shouldLinkItemAtURL:toURL:
- fileManager:shouldProceedAfterError:linkingItemAtURL:toURL:
- fileManager:shouldProceedAfterError:linkingItemAtPath:toPath:
- linkItemAtURL:toURL:error:
- linkItemAtPath:toPath:error: