javascript get uploaded file name code example
Example 1: javascript - get the filename and extension from input type=file
function getFile(filePath) {
return filePath.substr(filePath.lastIndexOf('\\') + 1).split('.')[0];
}
function getoutput() {
outputfile.value = getFile(inputfile.value);
extension.value = inputfile.value.split('.')[1];
}
<input id='inputfile' type='file' name='inputfile' onChange='getoutput()'><br>
Output Filename <input id='outputfile' type='text' name='outputfile'><br>
Extension <input id='extension' type='text' name='extension'>
Example 2: get uploaded file name in js
$('input[type="file"]').change(function(e) {
var fileName = e.target.files[0].name;
$(e.target).parent('div').find('.form-file-text').html(fileName)
});
Example 3: get uploaded file name
fake_path=document.getElementById('FileUpload1').value
alert(fake_path.split("\\").pop())
Example 4: js get the filename you uploaded
var fu1 = document.getElementById("FileUpload1");
alert("You selected " + fu1.value);