file_directory_path

5 file.inc file_directory_path()
6 file.inc file_directory_path()

Determine the default 'files' directory.

Return value

A string containing the path to Drupal's 'files' directory.

Related topics

11 calls to file_directory_path()

2 string references to 'file_directory_path'

File

includes/file.inc, line 711
API for handling file uploads and server file management.

Code

function file_directory_path() {
  return variable_get('file_directory_path', 'files');
}
Login or register to post comments