bbd
09-04-2008, 03:52 PM
Hey,
Basically I need to get a list of File pointers to ever file in a directory, including all subdirectories.
Currently I do this, but it only gets the files in that directory.
File directory = new File("c:\\MyDir");
File[] files = directory.listFiles();
I need everything in c:\MyDir\AnyOtherSubDir
Is there some already created easy code that I can use?
Thanks!
BBD
Basically I need to get a list of File pointers to ever file in a directory, including all subdirectories.
Currently I do this, but it only gets the files in that directory.
File directory = new File("c:\\MyDir");
File[] files = directory.listFiles();
I need everything in c:\MyDir\AnyOtherSubDir
Is there some already created easy code that I can use?
Thanks!
BBD