Có cách nào để tải tệp bằng URI trong Drupal 8 hoặc Drupal 9 không?
Trong Drupal 7 có thể bằng ví dụ tiếp theo:
$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