you may use template reference variable and send to a method
html
<input #variable type="file" placeholder="File Name" name="filename" (change)="onChange($event, variable);">
component
onChange(event: any, element): void {
// codes
element.value = '';
}