Function 関数

NSSearchPathForDirectoriesInDomains

Creates a list of directory search paths. ディレクトリ検索パスのリストを作成します。

Declaration 宣言

NSArray<NSString *> * NSSearchPathForDirectoriesInDomains(NSSearchPathDirectory directory, NSSearchPathDomainMask domainMask, BOOL expandTilde);

Discussion 議論

Creates a list of path strings for the specified directories in the specified domains. The list is in the order in which you should search the directories. If expandTilde is YES, tildes are expanded as described in stringByExpandingTildeInPath. 指定されたドメインの中の指定されたディレクトリいくらかに対するパス文字列からなるリストを作成します。このリストは、それであなたがディレクトリそれらを検索しなければならない順番です。expandTildeYESならば、チルダはstringByExpandingTildeInPathで記述されるように展開されます。

You should consider using the NSFileManager methods URLsForDirectory:inDomains: and URLForDirectory:inDomain:appropriateForURL:create:error:. which return URLs, which are the preferred format. あなたは、NSFileManagerメソッドのURLsForDirectory:inDomains:URLForDirectory:inDomain:appropriateForURL:create:error:の使用を考慮すべきです。それは、より好ましい形式であるURLを返します。

For more information on file system utilities, see File System Programming Guide. ファイルシステムユーティリティに関するさらなる情報として、File System Programming Guideを見てください。

See Also 参照

Locating System Directories システムディレクトリの位置を突き止める