- fileManager:shouldMoveItemAtPath:toPath:
- fileManager:shouldProceedAfterError:movingItemAtURL:toURL:
- fileManager:shouldProceedAfterError:movingItemAtPath:toPath:
Availability 有効性
Technology
- (BOOL)fileManager:(NSFileManager
*)fileManager
shouldMoveItemAtURL:(NSURL
*)srcURL
toURL:(NSURL
*)dstURL;
fileManager
The file manager object that is attempting to move the file or directory. ファイルまたはディレクトリの移動を試みるファイルマネージャオブジェクト。
srcURL
The URL of the file or directory that the file manager wants to move. ファイルマネージャが移動を望むファイルまたはディレクトリのURL。
dstURL
The URL specifying the new location for the file or directory. ファイルまたはディレクトリに対する新しい場所を指定するURL。
YES
if the item should be moved or NO
if it should not be moved. If you do not implement this method, the file manager assumes a response of YES
.
項目が移動されるすべきならばYES
またはそれが移動されるべきでないならばNO
。あなたがこのメソッドを実装しないならば、ファイルマネージャは応答はYES
だと決めてかかります。
This method is called only once for the item being moved, regardless of whether the item is a file, directory, or symbolic link. このメソッドは、項目が移動されることに対して一度だけ呼び出されます、項目がファイル、ディレクトリ、またはシンボリックリンクであるかに関係なく。
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:shouldMoveItemAtPath:toPath:
- fileManager:shouldProceedAfterError:movingItemAtURL:toURL:
- fileManager:shouldProceedAfterError:movingItemAtPath:toPath:
- moveItemAtPath:toPath:error:
- moveItemAtURL:toURL:error: