URIでファイルエンティティを読み込む


11

Drupal 8またはDrupal 9でURIを使用してファイルをロードする方法はありますか?

Drupal 7では、次の例で可能です。

$uri = 'public://file.xyz';

// Take a look at: file.inc::file_load_multiple
$files = file_load_multiple(array(), array('uri' => $uri));
$file = reset($files); // If empty, $file will be false, otherwise will contain the required file

ここから取得https://www.drupal.org/forum/support/module-development-and-code-questions/2012-06-06/load-a-file-by-uri#comment-6493610

回答:


18

には、指定されたファイルURIでファイルエンティティを検索する際に必要な条件を定義できるloadByPropertiesメソッドがあり\Drupal\Core\Entity\EntityStorageInterfaceます。

/* @var \Drupal\file\FileInterface[] $files */
$files = \Drupal::entityTypeManager()
  ->getStorage('file')
  ->loadByProperties(['uri' => $uri]);
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.