I using Angular 7 with typescript and my question is: How to upload files from multiple inputs in html like this:
<input type="file" (change)="handleFileInput($event.target.files)">
<input type="file" (change)="handleFileInput($event.target.files)">
<input type="file" (change)="handleFileInput($event.target.files)">
I know about multiple but I can't use it because I need to change the name of each file to value of enum in spring boot app