I know that and I have try use PHP5 before to get the textfile name inside a folder.
$directory = "/C/Home/Newfolder";
$file = scandir($directory);
print_r($file);
These program will read the content inside Newfolder file, and list out all the text file name. I wish HTML5 or Javascript also can do that, did you guys have any good suggestion just like "scandir" in PHP5 ?
Mention** Only Javascript/HTML5
Example : Inside Newfolder it consist of
a.txt, b.txt, c.txt, d.txt
I wish to get all the name only ~