Instance Method
インスタンスメソッド
createDirectoryAtPath:attributes:
Creates a directory (without contents) at a given path with given attributes.
ディレクトリを(内容無しで)与えられたパスで、いくらかの与えられた属性とともに作成します。
Parameters
パラメータ
path
The path at which to create the new directory. The directory to be created must not yet exist, but its parent directory must exist.
そこで新しいディレクトリを作成することになるパス。作成されるディレクトリはまだ存在してはいけません、しかしそれの親ディレクトリは存在しなければいけません。
attributes
The file attributes for the new directory. The attributes you can set are owner and group numbers, file permissions, and modification date. If you specify nil
for attributes
, default values for these attributes are set (particularly write access for the creator and read access for others). For a list of keys you can include in this dictionary, Supporting Types. Some of the keys, such as NSFileHFSCreatorCode
and NSFileHFSTypeCode
, do not apply to directories.
新しいディレクトリに対するファイル属性。あなたが設定できる属性は、所有者とグループ番号、ファイル権限、そして修正日です。あなたがnil
をattributes
に指定するならば、それら属性に対する省略時が設定されます(とりわけクリエーターに対する書き込みアクセスと他のものに対する読み出しアクセス)。あなたがこの辞書に含めることができるキーの一覧として、支援を行う型を。キーのいくつか、 例えばNSFileHFSCreatorCode
とNSFileHFSTypeCode
などは、ディレクトリに適用されません。
Return Value
戻り値
YES
if the operation was successful, otherwise NO
.
操作が成功したならばYES
、そうでないならばNO
。
Discussion
議論
Because this method does not return error information, it has been deprecated as of OS X v10.5. Use createDirectoryAtPath:withIntermediateDirectories:attributes:error:
instead.
このメソッドがエラー情報を返さないことから、それはOS X v10.5現在で非推奨にされます。createDirectoryAtPath:withIntermediateDirectories:attributes:error:
を代わりに使ってください。
See Also
参照
Deprecated Methods
非推奨メソッド
- 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.
与えられたパスの中の指定されたディレクトリまたはファイルを別のパスによって識別されるファイルシステムの中の異なる場所へとコピーします。
Deprecated
非推奨
- 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.
与えられたパスによって指定されるディレクトリまたはファイルを、別のパスによって識別されるファイルシステムの中の異なる場所に移動します。
Deprecated
非推奨
- removeFileAtPath:handler:
Deletes the file, link, or directory (including, recursively, all subdirectories, files, and links in the directory) identified by a given path.
与えられたパスによって識別されるファイル、リンク、またはディレクトリを(再帰的にそのディレクトリの中の全ての下位ディレクトリ、ファイル、そしてリンクを含めて)消去します。
Deprecated
非推奨
- fileAttributesAtPath:traverseLink:
Returns a dictionary that describes the POSIX attributes of the file specified at a given.
与えられるところで指定されたファイルのPOSIX属性を記述する辞書を返します。
Deprecated
非推奨
- fileSystemAttributesAtPath:
Returns a dictionary that describes the attributes of the mounted file system on which a given path resides.
そこにおいて与えられたパスが存在するところのマウントされたファイルシステムの属性を記述する辞書を返します。
Deprecated
非推奨
- directoryContentsAtPath:
Returns the directories and files (including symbolic links) contained in a given directory.
与えられたディレクトリの中に含まれる(シンボリックリンクを含む)ディレクトリとファイルを返します。
Deprecated
非推奨
- pathContentOfSymbolicLinkAtPath:
Returns the path of the directory or file that a symbolic link at a given path refers to.
与えられたパスでのシンボリックリンクが参照するディレクトリまたはファイルのパスを返します。
Deprecated
非推奨
- 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.
ファイルまたはディレクトリをコピー、移動、削除、またはリンクする場合にそれが出くわす各エラーに対するそれのハンドラにこのメッセージを送ったNSFileManager
オブジェクト。
Deprecated
非推奨
- fileManager:willProcessPath:
An NSFileManager
object sends this message to a handler immediately before attempting to move, copy, rename, or delete, or before attempting to link to a given path.
移動、コピー、名前変更、または消去を試みる直前に、または与えられたパスにリンクを試みる前にハンドラにこのメッセージを送ったNSFileManager
オブジェクト。
Deprecated
非推奨
Related Documentation
関連文書