| Versions | |
|---|---|
| 4.7 – 6 | file_directory_path() |
Determine the default 'files' directory.
A string containing the path to Drupal's 'files' directory.
includes/
<?php
function file_directory_path() {
return variable_get('file_directory_path', 'files');
}
?>