- fileManager:shouldMoveItemAtURL:toURL:
- fileManager:shouldMoveItemAtPath:toPath:
- fileManager:shouldProceedAfterError:movingItemAtURL:toURL:
- fileManager:shouldProceedAfterError:movingItemAtPath:toPath:
Availability 有効性
Technology
@protocol NSFileManagerDelegate
The NSFile
protocol defines optional methods for managing operations involving the copying, moving, linking, or removal of files and directories. When you use an NSFile
object to initiate a copy, move, link, or remove operation, the file manager asks its delegate whether the operation should begin at all and whether it should proceed when an error occurs.
NSFile
プロトコルは、ファイルおよびディレクトリのコピー、移動、リンク、または削除を伴う演算を管理するために任意のメソッドを定義します。あなたがNSFile
オブジェクトを使ってコピー、移動、リンク、または除去操作を始める時、ファイルマネージャはそれの委任先に、操作がそもそも始まるべきかどうかそしてそれはエラー発生の時に続けるべきか尋ねます。
The methods of this protocol accept either NSURL
or NSString
objects. The file manager always prefers methods that take an NSURL
object over those that take an NSString
object.
このプロトコルのメソッドは、NSURL
またはNSString
オブジェクトのどちらでも受け入れます。ファイルマネージャは常にNSURL
オブジェクトを取るメソッドを好みます、NSString
オブジェクトを取るものよりも。
You should associate your delegate with a unique instance of the NSFile
class, as opposed to the shared instance.
あなたは、あなたの委任先をNSFile
クラスのある特有のインスタンスと結びつけるべきです、共有インスタンスではなくて。
- fileManager:shouldMoveItemAtURL:toURL:
- fileManager:shouldMoveItemAtPath:toPath:
- fileManager:shouldProceedAfterError:movingItemAtURL:toURL:
- fileManager:shouldProceedAfterError:movingItemAtPath:toPath:
- fileManager:shouldCopyItemAtURL:toURL:
- fileManager:shouldCopyItemAtPath:toPath:
- fileManager:shouldProceedAfterError:copyingItemAtURL:toURL:
- fileManager:shouldProceedAfterError:copyingItemAtPath:toPath:
- fileManager:shouldRemoveItemAtURL:
- fileManager:shouldRemoveItemAtPath:
- fileManager:shouldProceedAfterError:removingItemAtURL:
- fileManager:shouldProceedAfterError:removingItemAtPath:
- fileManager:shouldLinkItemAtURL:toURL:
- fileManager:shouldLinkItemAtPath:toPath:
- fileManager:shouldProceedAfterError:linkingItemAtURL:toURL:
- fileManager:shouldProceedAfterError:linkingItemAtPath:toPath:
NSFileManager