Чи є спосіб завантажити файл URI в Drupal 8 або Drupal 9?
У 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