¿Hay alguna manera de cargar un archivo por URI en Drupal 8 o Drupal 9?
En Drupal 7 es posible con el siguiente ejemplo:
$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
Tomado de aquí https://www.drupal.org/forum/support/module-development-and-code-questions/2012-06-06/load-a-file-by-uri#comment-6493610