Le JS ouvre l'explorateur Windows, laisse l'utilisateur sélectionner un fichier, puis ouvre le fichier. Je veux qu'il cherche par défaut dans le même dossier à chaque fois.
<html>
<head>
<script type="text/javascript">
function getFilename()
{
<!-- open the file -->
var thefile = document.getElementById('thefile');
window.open(thefile.value,'mywindow','width=400,height=200')
}
</script>
</head>
<body>
<form>
<!-- get the filename -->
<p>FCT scanned files search screen</P>
<p>Click Browse to select file</P>
<input type="file" id="thefile" onchange="getFilename()" />
</form>
</body>
</html>