I would like to send a file to a input
type file
and retrieve the full file path.
If anyone knows something like this it will be very useful to me.
I would like to send a file to a input
type file
and retrieve the full file path.
If anyone knows something like this it will be very useful to me.
$caminhoArquivo = "";
$diretorio = $_POST['nome_diretorio'];
if (file_exists($diretorio)&&is_dir($diretorio )) {
// mova o upload para esse diretório
caminhoArquivo = $diretorio."/".$nomeUpload;
} else {
// como o diretório informado não existe, é preciso criá-lo
if (mkdir($diretorio , 0777)) {
// mova o upload para esse diretório
caminhoArquivo = $diretorio."/".$nomeUpload;
} else {
echo "Falha ao criar diretório";
}
}