file_directory_path()
drupal-5/includes/file.inc, line 715
Determine the default 'files' directory.
A string containing the path to Drupal's 'files' directory.
| Name | Description |
|---|---|
| File interface | Common file handling functions. |
<?php
function file_directory_path() {
return variable_get('file_directory_path', 'files');
}
?>