You are here

function drupal_move_uploaded_file in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/includes/file.inc \drupal_move_uploaded_file()

Moves an uploaded file to a new location.

Deprecated

in Drupal 8.0.x-dev, will be removed before Drupal 9.0.0. Use \Drupal\Core\File\FileSystem::moveUploadedFile().

Related topics

1 call to drupal_move_uploaded_file()
file_save_upload in core/modules/file/file.module
Saves file uploads to a new location.

File

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

Code

function drupal_move_uploaded_file($filename, $uri) {
  return \Drupal::service('file_system')
    ->moveUploadedFile($filename, $uri);
}