I've this file input:
<input type="file" id="fileSelector" multiple="true">
If I add or remove files inside this input, it doesn't update its text.
fileSelector.files = [];
E.g, if its text is "2 files selected" and I change the files
array, it doesn't update this text.
How to update this text?