- copyPath:toPath:handler:
Copies the directory or file specified in a given path to a different location in the file system identified by another path.
- movePath:toPath:handler:
Moves the directory or file specified by a given path to a different location in the file system identified by another path.
- removeFileAtPath:handler:
Deletes the file, link, or directory (including, recursively, all subdirectories, files, and links in the directory) identified by a given path.
- changeFileAttributes:atPath:
Changes the attributes of a given file or directory.
与えられたファイルまたはディレクトリの属性を変更します。
- fileAttributesAtPath:traverseLink:
Returns a dictionary that describes the POSIX attributes of the file specified at a given.
与えられるところで指定されたファイルのPOSIX属性を記述する辞書を返します。
- fileSystemAttributesAtPath:
Returns a dictionary that describes the attributes of the mounted file system on which a given path resides.
そこにおいて与えられたパスが存在するところのマウントされたファイルシステムの属性を記述する辞書を返します。
- directoryContentsAtPath:
Returns the directories and files (including symbolic links) contained in a given directory.
与えられたディレクトリの中に含まれる(シンボリックリンクを含む)ディレクトリとファイルを返します。
- createDirectoryAtPath:attributes:
Creates a directory (without contents) at a given path with given attributes.
ディレクトリを(内容無しで)与えられたパスで、いくらかの与えられた属性とともに作成します。
- createSymbolicLinkAtPath:pathContent:
Creates a symbolic link identified by a given path that refers to a given location.
与えられたパスによって識別されるシンボリックリンクを作成します、それは与えられた場所に言及します。
- pathContentOfSymbolicLinkAtPath:
Returns the path of the directory or file that a symbolic link at a given path refers to.
与えられたパスでのシンボリックリンクが参照するディレクトリまたはファイルのパスを返します。
- fileManager:shouldProceedAfterError:
An
NSFileManager
object sends this message to its handler for each error it encounters when copying, moving, removing, or linking files or directories.