file_move(FileInterface $source, $destination = NULL, $replace = FILE_EXISTS_RENAME)
Moves a file to a new location and update the file's database entry.
- Checks if $source and $destination are valid and readable/writable.
- Performs a file move if $source is not equal to $destination.
- If file already exists in $destination either the call will error out, replace the file or rename the file based on the $replace parameter.
- Adds the new file to the files database.
Parameters
\Drupal\file\FileInterface $source: A file entity.
string $destination: A string containing the destination that $source should be moved to. This must be a stream wrapper URI.
int $replace: (optional) The replace behavior when the destination file already exists. Possible values include:
- FILE_EXISTS_REPLACE: Replace the existing file. If a managed file with the destination name exists then its database entry will be updated and $source->delete() called after invoking hook_file_move(). If no database entry is found, then the source files record will be updated.
- FILE_EXISTS_RENAME: (default) Append _{incrementing number} until the filename is unique.
- FILE_EXISTS_ERROR: Do nothing and return FALSE.
Return value
\Drupal\file\FileInterface|false Resulting file entity for success, or FALSE in the event of an error.
See also
File
- core/modules/file/file.module, line 216
- Defines a "managed_file" Form API field and a "file" field for Field module.
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | function file_move(FileInterface $source , $destination = NULL, $replace = FILE_EXISTS_RENAME) { if (!file_valid_uri( $destination )) { if (( $realpath = drupal_realpath( $source ->getFileUri())) !== FALSE) { \Drupal::logger( 'file' )->notice( 'File %file (%realpath) could not be moved because the destination %destination is invalid. This may be caused by improper use of file_move() or a missing stream wrapper.' , array ( '%file' => $source ->getFileUri(), '%realpath' => $realpath , '%destination' => $destination )); } else { \Drupal::logger( 'file' )->notice( 'File %file could not be moved because the destination %destination is invalid. This may be caused by improper use of file_move() or a missing stream wrapper.' , array ( '%file' => $source ->getFileUri(), '%destination' => $destination )); } drupal_set_message(t( 'The specified file %file could not be moved because the destination is invalid. More information is available in the system log.' , array ( '%file' => $source ->getFileUri())), 'error' ); return FALSE; } if ( $uri = file_unmanaged_move( $source ->getFileUri(), $destination , $replace )) { $delete_source = FALSE; $file = clone $source ; $file ->setFileUri( $uri ); // If we are replacing an existing file re-use its database record. if ( $replace == FILE_EXISTS_REPLACE) { $existing_files = entity_load_multiple_by_properties( 'file' , array ( 'uri' => $uri )); if ( count ( $existing_files )) { $existing = reset( $existing_files ); $delete_source = TRUE; $file ->fid = $existing ->id(); $file ->uuid = $existing ->uuid(); } } // If we are renaming around an existing file (rather than a directory), // use its basename for the filename. elseif ( $replace == FILE_EXISTS_RENAME && is_file ( $destination )) { $file ->setFilename(drupal_basename( $destination )); } $file ->save(); // Inform modules that the file has been moved. \Drupal::moduleHandler()->invokeAll( 'file_move' , array ( $file , $source )); // Delete the original if it's not in use elsewhere. if ( $delete_source && !\Drupal::service( 'file.usage' )->listUsage( $source )) { $source -> delete (); } return $file ; } return FALSE; } |
Please login to continue.