Через input.value не получается?
<html>
<head>
</head>
<body>
<input id="inp" type="file" />
<button id="but">
</button>
<script>
var but=document.querySelector("#but")
var inp=document.querySelector("#inp")
but.onclick=function(){
inp.value=""
}
</script>
</body>
</html>