I have a dynamic inputs of file in html so i add each file in array of file
tmp_files :File[] = [] ;
and in HTML
<div class="container">
<input type="file" (change)="fileChange($event)" name="file" id="file" class="inputfile">
in component filechange function look like this
fileChange(event) {
this.tmp_files.push(event.target.files);}
and save function
save(){
for (let i = 0; i < this.tmp_files.length; i++) {
console.log("ccc",this.tmp_files[i]);
}
}
So now i tried to get File and File name, i spent a lot of time , i tried a lot of thing, but i can't resolve this issue so thanks to help me to Get File and her name because i want to send this files to server thanks again

console.log("ccc", JSON.stringify(this.tmp_files))before the loop instead? It's difficult to tell what exactly is going on from a screenshot of an object...