fatcodeguy
Programmer
Hi! How would I get a directory listing in Java?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
String[] files;
File f = new File(file_name);
if (f.isDirectory())
files = f.list();