I want to perform an operation on all files in a given directory. I want the user to choose the directory with some GUI interface.
Using HTML I could use the INPUT as I found in this example below at TIZAG. As anyone found a method just to choose a directory?
Thanks!
WBR
http://www.tizag.com/phpT/fileupload.php
<form enctype="multipart/form-data" action="uploader.php" method="POST">
<input type="hidden" name="MAX_FILE_SIZE" value="100000" />
Choose a file to upload: <input name="uploadedfile" type="file" /><br />
<input type="submit" value="Upload File" />
</form>