Instance Method
インスタンスメソッド
mountedVolumeURLsIncludingResourceValuesForKeys:options:
Returns an array of URLs that identify the mounted volumes available on the device.
デバイス上で利用可能なマウントされたボリュームを識別するURLの配列を返します。
Parameters
パラメータ
propertyKeys
An array of keys that identify the file properties that you want pre-fetched for each volume. For each returned URL, the values for these keys are cached in the corresponding NSURL
objects. You may specify nil
for this parameter. For a list of keys you can specify, see Common File System Resource Keys.
あなたが各ボリュームに対して事前読込みされることを望むファイルプロパティを識別するキーからなる配列。返されるURL各々に対して、これらキーの値は対応するNSURL
オブジェクトの中にキャッシュされます。あなたは、このパラメータにnil
を指定するかもしれません。あなたが指定できるキーの一覧として、Common File System Resource Keysを見てください。
options
オプション
Option flags for the enumeration. For a list of possible values, see NSVolumeEnumerationOptions
.
列挙に対する任意のフラグ可能な値の一覧として、NSVolumeEnumerationOptions
を見てください。
Return Value
戻り値
An array of NSURL
objects identifying the mounted volumes.
マウントされたボリュームを識別するNSURL
オブジェクトからなる配列。
Discussion
議論
This call may block if I/O is required to determine values for the requested propertyKeys
.
これはブロックを呼び出すかもしれません、もしI/Oが要請されたpropertyKeys
に対する値を決定する必要があるならば。
See Also
参照
Discovering Directory Contents
ディレクトリ内容を発見する
- contentsOfDirectoryAtPath:error:
Performs a shallow search of the specified directory and returns the paths of any contained items.
指定されたディレクトリの浅い検索を実行して、あらゆる含まれる項目のパスを返します。
- enumeratorAtPath:
Returns a directory enumerator object that can be used to perform a deep enumeration of the directory at the specified path.
指定されたパスでのディレクトリの深い列挙を実行するために使用できるディレクトリ列挙子オブジェクトを返します。
- subpathsOfDirectoryAtPath:error:
Performs a deep enumeration of the specified directory and returns the paths of all of the contained subdirectories.
指定されたディレクトリの深い列挙を実行します、そして全ての含まれる下位ディレクトリのパスを返します。
- subpathsAtPath:
Returns an array of strings identifying the paths for all items in the specified directory.
指定されたディレクトリの中の全ての項目に対するパスを識別する文字列の配列を返します。