I successfully created the directories with this code in controller:
$cpath = public_path().'/files/completed/'.$file['customer_name'];
if (! File::exists($cpath)) {
File::makeDirectory($cpath);
}
but I am not sure how can i move related files to these directories for that I tried this:
File::move('files/pending/'.$filename,'files/completed/'.$file['customer_name'].$filename);
but the problem is I am not getting any files in their respective directories but the files are moving with the name renamed to (comapanyname filename.850) and that's not what I wanted here is how i am doing all the code in controller for directories and files:
$cpath = public_path().'/files/completed/'.$file['customer_name'];
if (! File::exists($cpath)) {
File::makeDirectory($cpath);
}
File::move('files/pending/'.$filename,'files/completed/'.$file['customer_name'].$filename);
Thank you for your response!
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire