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

createDirectoryAtPath:attributes:

Creates a directory (without contents) at a given path with given attributes. ディレクトリを(内容無しで)与えられたパスで、いくらかの与えられた属性とともに作成します。

Declaration 宣言

- (BOOL)createDirectoryAtPath:(NSString *)path 
                   attributes:(NSDictionary *)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. 新しいディレクトリに対するファイル属性。あなたが設定できる属性は、所有者とグループ番号、ファイル権限、そして修正日です。あなたがnilattributesに指定するならば、それら属性に対する省略時が設定されます(とりわけクリエーターに対する書き込みアクセスと他のものに対する読み出しアクセス)。あなたがこの辞書に含めることができるキーの一覧として、支援を行う型を。キーのいくつか、 例えばNSFileHFSCreatorCodeNSFileHFSTypeCodeなどは、ディレクトリに適用されません。

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 非推奨メソッド

Related Documentation 関連文書