function File::createFileUrl
Creates a file URL for the URI of this file.
Parameters
bool $relative: (optional) Whether the URL should be root-relative, defaults to TRUE.
Return value
string A string containing a URL that may be used to access the file.
Overrides FileInterface::createFileUrl
File
- 
              core/modules/ file/ src/ Entity/ File.php, line 81 
Class
- File
- Defines the file entity class.
Namespace
Drupal\file\EntityCode
public function createFileUrl($relative = TRUE) {
  $url = file_create_url($this->getFileUri());
  if ($relative && $url) {
    $url = file_url_transform_relative($url);
  }
  return $url;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
