Last active
March 18, 2025 10:52
-
-
Save vyspiansky/931524034c5423909bbf09455cd827ef to your computer and use it in GitHub Desktop.
Move file to directory in Drupal 10
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Drupal\Core\File\FileSystemInterface; | |
$directory = '/path/to/processed'; | |
\Drupal::service('file_system') | |
->prepareDirectory($directory, FileSystemInterface::CREATE_DIRECTORY); | |
\Drupal::service('file_system') | |
->move($file->uri, $directory . '/' . $file->filename); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment