Javascript - How to extract filename from a file input control - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T05:46:07Zhttp://stackoverflow.com/feeds/question/857618http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/857618/javascript-how-to-extract-filename-from-a-file-input-control1Javascript - How to extract filename from a file input controlYogi Yang 0072009-05-13T12:12:57Z2009-05-14T12:55:20Z
<p>When a user selects a file in a web page I want to be able to extract just the filename.</p>
<p>I did try str.search function but it seems to fail when the file name is something like this: <strong>c:\uploads\ilike.this.file.jpg</strong>.</p>
<p>How can we extract just the file name without extension?</p>
http://stackoverflow.com/questions/857618/javascript-how-to-extract-filename-from-a-file-input-control/857644#8576441Answer by TM for Javascript - How to extract filename from a file input controlTM2009-05-13T12:20:03Z2009-05-13T12:20:03Z<pre><code>var pieces = str.split('\\');
var filename = pieces[pieces.length-1];
</code></pre>
http://stackoverflow.com/questions/857618/javascript-how-to-extract-filename-from-a-file-input-control/857662#8576622Answer by Ian Oxley for Javascript - How to extract filename from a file input controlIan Oxley2009-05-13T12:24:23Z2009-05-13T12:24:23Z<p>Assuming your <strong><input type="file" /></strong> has an id of <strong>upload</strong> this should hopefully do the trick:</p>
<pre><code>var fullPath = document.getElementById('upload').value;
if (fullPath) {
var startIndex = (fullPath.indexOf('\\') >= 0 ? fullPath.lastIndexOf('\\') : fullPath.lastIndexOf('/'));
var filename = fullPath.substring(startIndex);
if (filename.indexOf('\\') === 0 || filename.indexOf('/') === 0) {
filename = filename.substring(1);
}
alert(filename);
}
</code></pre>