Instance Method インスタンスメソッド

fileManager(_:shouldMoveItemAtPath:toPath:)

Asks the delegate if the file manager should move the specified item to the new path. ファイルマネージが指定された項目を新しいパスへ移動するべきか、委任先に尋ねます。

Declaration 宣言

optional func fileManager(_ fileManager: FileManager, 
     shouldMoveItemAtPath srcPath: String, 
                   toPath dstPath: String) -> Bool

Parameters パラメータ

fileManager

The file manager object that is attempting to move the file or directory. ファイルまたはディレクトリの移動を試みるファイルマネージャオブジェクト。

srcPath

The path to the file or directory that the file manager wants to move. ファイルマネージャが移動しようとするファイルまたはディレクトリへのパス。

dstPath

The new path for the file or directory. ファイルまたはディレクトリに対する新しいパス。

Return Value 戻り値

true if the operation should proceed, otherwise false. If you do not implement this method, the file manager assumes a response of true. 操作を続行すべきならばtrue、そうでないならばfalse。あなたがこのメソッドを実装しないならば、ファイルマネージャは応答はtrueだと決めてかかります。

Discussion 議論

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 fileManager(_:shouldMoveItemAt:to:) method, which is preferred over this method in macOS 10.6 and later. このメソッドは、macOS 10.6以降ではこのメソッドより好まれるfileManager(_:shouldMoveItemAt:to:)メソッドと同じ業務を実行します。

See Also 参照

Moving an Item 項目を移動する

Related Documentation 関連文書