file_directory_path
includes/file.inc, line 962
- Versions
- 4.7 – 7
file_directory_path()
Determine the default 'files' directory.
Return value
A string containing the path to Drupal's 'files' directory.
Related topics
Code
<?php
function file_directory_path() {
return variable_get('file_directory_path', conf_path() .'/files');
}
?> 