Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

javascript - get the filename and extension from input type=file

//Use lastIndexOf to get the last  as an index and use substr to get the remaining string starting from the last index of 

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'>
 
PREVIOUS NEXT
Tagged: #javascript #filename #extension #input
ADD COMMENT
Topic
Name
2+9 =