Here is my code:
Code:
public static void listDirectory( File the_Directory ) {
//System.out.println ("132: " + the_Directory.getAbsolutePath());
int max = 0;
String the_String = "quotes";
if ( the_Directory.isDirectory ( ) ) {
File[] list = the_Directory.listFiles();
if (list != null) {
//System.out.println
Leave a comment: