Here is an example that will give you an idea:
<style>#file { display: none; }</style>
<label class="mdl-button mdl-js-button mdl-button--icon mdl-button--file">
<i class="material-icons">attach_file</i><input type="file" id="file">
</label>
It uses the MDL icon as a user click button to pull out a file input prompt.
source
share