Reading all files in directory
Hi
I need to read all the files inside a directory where my app resides. I have the following:
File file = new File(args[0]);
Reader reader = new FileReader(file);
BufferedReader bufferedReader = new BufferedReader(reader);
This works fine for one file, but i have many files I would like to
read in this directory. I was hoping I could just do:
java MyApp *
but it doesn't work. thanks in advance for any help.
J.

