Does anyone know how to create directory chooser using js, html, jsp or something like that?
In HTML you cannot choose a folder thus JavaScript will not help you.
Via JSP you might want to scan the file system and give a list (which is an ugly thing) which you can let the user choose from.
Example: http://webdev2.sun.com/example/faces/chooseruploader/folderChooser.jsp;j...
This is what I meant by using an Acivex: var fso = new ActiveXObject( "Scripting.FileSystemObject" ); But it's a huge security bridge!
See example: See this post http://www.webdeveloper.com/forum/archive/index.php/t-161685.html
Comments
In HTML you cannot choose a folder thus JavaScript will not help you.
Via JSP you might want to scan the file system and give a list (which is an ugly thing) which you can let the user choose from.
Example: http://webdev2.sun.com/example/faces/chooseruploader/folderChooser.jsp;j...
This is what I meant by using an Acivex:
var fso = new ActiveXObject( "Scripting.FileSystemObject" );
But it's a huge security bridge!
See example: See this post http://www.webdeveloper.com/forum/archive/index.php/t-161685.html