Tell me more ×
Drupal Answers is a question and answer site for Drupal developers and administrators. It's 100% free, no registration required.

I need to get the path for public:// at runtime. Is there a fx call to resolve it?

share|improve this question

2 Answers

up vote 3 down vote accepted

You can use the following code, to obtain the real path of public://.

if ($wrapper = file_stream_wrapper_get_instance_by_uri('public://')) {
  $realpath = $wrapper->realpath();
}
share|improve this answer

You can use the file_create_url function.

$uri = 'public://';
$path= file_create_url($uri)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.