I'm trying to rename a file but I get a warning and the file is not renamed. The error:
Warning: rename(C:\wamp\www\MyApp\app/../web/uploads/documents\old_name.jpg,C:\wamp\www\MyApp\app/../web/uploads/documents ew_name.jpg):
My code:
rename($this->getParameter('document_directory')."/".$oldDocument->getName(), $this->getParameter('document_directory')."/".$documentNewName);
Which become:
'rename(C:\wamp\www\MyApp\app/../web/uploads/documents\old_name.jpg,C:\wamp\www\MyApp\app/../web/uploads/documents ew_name.jpg): '
I have no more information.
Notice that this code worked for the upload:
move_uploaded_file($_FILES['form']['tmp_name']['Document'], $this->getParameter('document_directory')."/old_name.jpg"