I'm giving maintenance to a project made in laravel, where the object's files are saved in this path, pdf files
C: \ xamp2 \ htdocs \ pmo \ public \ archives
The code snippet where you save the files is this
public function salvar($objArquivo, $objProjeto, $objDataAtualizacao) {
$strCaminho = public_path('projetos_arquivos') . '\' . $objProjeto->codigo; // 'public\projetos_arquivos\codigo_projeto'
$strNome = $objProjeto->codigo . "_" . $objDataAtualizacao->format("d-m-Y"); // Nomeia arquivo com codigo do projeto + data passada como argumento
if(!file_exists($strCaminho)) { // Cria pasta para o projeto, caso não já exista uma
$objProjetoDiretorio = File::makeDirectory($strCaminho);
}
$objArquivo->move($strCaminho, $strNome . ".pdf"); // Salvando arquivo no servidor
$strCaminhoArquivo = $strCaminho . "\" . $strNome . ".pdf";
return($strCaminhoArquivo);
}
When you save a new object with the same name that already exists on this page, the new object takes the files of the object that already exists.
How do I save the file to another folder? and display the files of this new folder and the old one ??
My list is like this
public function listarArquivos($strCodigoProjeto, $intQuantidade) {
$strCaminho = public_path() . "\projetos_arquivos\" . $strCodigoProjeto. "\*";
//$strCaminho2 = asset("projetos_arquivos/" . $strCodigoProjeto);
//var_dump($strCaminho);exit();
$arrArquivos = File::glob($strCaminho);
I would like a light aew ... when I get to create a new folder the data of the other does not list