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

URLsForDirectory:inDomains:

Returns an array of URLs for the specified common directory in the requested domains. 要請されたドメインにおいて、指定される一般的ディレクトリに対するURLの配列を返します。

Declaration 宣言

- (NSArray<NSURL *> *)URLsForDirectory:(NSSearchPathDirectory)directory 
                             inDomains:(NSSearchPathDomainMask)domainMask;

Parameters パラメータ

directory

The search path directory. The supported values are described in NSSearchPathDirectory. 検索パスディレクトリ。サポートされる値は、NSSearchPathDirectoryで記述されます。

domainMask

The file system domain to search. The value for this parameter is one or more of the constants described in NSSearchPathDomainMask. 検索するファイルシステムドメイン。このパラメータに対する値は、NSSearchPathDomainMaskで記述される1つ以上の定数です。

Return Value 戻り値

An array of NSURL objects identifying the requested directories. The directories are ordered according to the order of the domain mask constants, with items in the user domain first and items in the system domain last. 要請されたディレクトリそれらを識別している、NSURLオブジェクトからなる配列。これらディレクトリは、ユーザドメインの項目が最初でシステムドメインの項目が最後となる、ドメインマスク定数の順番に従って順番付けられます。

Discussion 議論

This method is intended to locate known and common directories in the system. For example, setting the directory to NSApplicationDirectory, will return the Applications directories in the requested domain. There are a number of common directories available in the NSSearchPathDirectory, including: NSDesktopDirectory, NSApplicationSupportDirectory, and many more. このメソッドは、システムにおいて既知の一般的なディレクトリの位置を突き止めることを意図されます。例えば、ディレクトリをNSApplicationDirectoryに設定すると、要請された領域におけるApplicationsディレクトリを返すでしょう。NSSearchPathDirectoryにおいて利用可能なたくさんの一般的なディレクトリがあり、含んでいるのは:NSDesktopDirectoryNSApplicationSupportDirectory、そしてさらに多く。

See Also 参照

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