good day I tried to download files from a folder in the directory, but when downloading does not find the file or the format
<body>
<div class="Contenedor">
<div class="tabla1" id="tabla1">
<h3><center>Lista de Certificados</center></h3>
<table id="table_id">
<thead>
<tr>
<th>Factura</th>
<th>Empresa</th>
<th>Certificado</th>
<th>Fecha de Recolección</th>
<th>Fecha de Generación</th>
<th></th>
</tr>
</thead>
<tbody>
<?php
setlocale(LC_ALL , "es_ES");
$consulta="SELECT * FROM certificados, usuarios WHERE certificados.id_usu = '$usu' AND usuarios.id_usu = '$usu'";
$resultado=$conexion ->query($consulta);
while ($row=$resultado->fetch_assoc()){
?>
<tr>
<td><?php echo $row['factura'];?></td>
<td><?php echo $row['nombre_comercial']; ?></td>
<td><?php echo $row['tipoCert'];?></td>
<td><?php $fecha1 = $row['fecharecol']; echo strftime('%B del %Y', strtotime($fecha1));?></td>
<td><?php $fecha2 = $row['fechacertgen']; echo strftime('%B del %Y', strtotime($fecha2));?></td>
<?php
$archivo = $row['numeroFormato'];
$cartera = $row['tipoCert'];
$empresa = $row['nombre_comercial'];
?>
<?php
}
?>
<td><a href="../../Empresa/<?php echo $empresa; ?>/<?php echo $cartera; ?>/<?php echo $archivo; ?>.pdf" download="<?php echo $cartera."_".$archivo; ?>"><span class="icon-download3"></span></a></td>
</tr>
</tbody>
</table>
</div>
</div>