I am working with cakephp 2.5 and trying to save a pdf file into root directory named Service_Invoices .
PDF File name is :
$pdf_file_name = 'ISE-00000104/17.pdf';
And the Root path :
$pdf_file_path = WWW_ROOT . 'files\Service_Invoices';
The problem is the slash in the file name. How to save this file with filename contain slash.
NB. The file name is a invoice id so it can not be changed.