- URLForDirectory:inDomain:appropriateForURL:create:error:
- URLsForDirectory:inDomains:
NSOpenStepRootDirectory
Availability 有効性
Technology
NSArray
<NSString
*> * NSSearchPathForDirectoriesInDomains(NSSearchPathDirectory
directory, NSSearchPathDomainMask
domainMask, BOOL expandTilde);
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 expand
is YES
, tildes are expanded as described in string
.
指定されたドメインの中の指定されたディレクトリいくらかに対するパス文字列からなるリストを作成します。このリストは、それであなたがディレクトリそれらを検索しなければならない順番です。expand
がYES
ならば、チルダはstring
で記述されるように展開されます。
You should consider using the NSFile
methods URLs
and URLFor
. which return URLs, which are the preferred format.
あなたは、NSFile
メソッドのURLs
とURLFor
の使用を考慮すべきです。それは、より好ましい形式であるURLを返します。
For more information on file system utilities, see File System Programming Guide. ファイルシステムユーティリティに関するさらなる情報として、File System Programming Guideを見てください。
Note 注意
The directory returned by this method may not exist. This method simply gives you the appropriate location for the requested directory. Depending on the application’s needs, it may be up to the developer to create the appropriate directory and any in between. このメソッドによって返されるディレクトリは、存在しないかもしれません。このメソッドは、要請されたディレクトリに対する適切な位置を単にあなたに与えるだけです。アプリケーションの必要とするものに依って、開発者の責任で適切なディレクトリおよび間にある何かを作成することなります。
- URLForDirectory:inDomain:appropriateForURL:create:error:
- URLsForDirectory:inDomains:
NSOpenStepRootDirectory