Javascript - How to extract filename from a file input control - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T05:46:07Z http://stackoverflow.com/feeds/question/857618 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/857618/javascript-how-to-extract-filename-from-a-file-input-control 1 Javascript - How to extract filename from a file input control Yogi Yang 007 2009-05-13T12:12:57Z 2009-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#857644 1 Answer by TM for Javascript - How to extract filename from a file input control TM 2009-05-13T12:20:03Z 2009-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#857662 2 Answer by Ian Oxley for Javascript - How to extract filename from a file input control Ian Oxley 2009-05-13T12:24:23Z 2009-05-13T12:24:23Z <p>Assuming your <strong>&lt;input type="file" /&gt;</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('\\') &gt;= 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>