Compilation Problem
I have a Directory Structure
d:/Big/small/mini/tiny/nano
NANO Directory contains practice.java
Mini DIRECTORY contains trial.java
I want to compile both the files at a time....
In such a way that if i mention the Root Directory BIG, then all the .java files in the subdirectories alos should get compiled.. Is it possible ?
If So, How to do using javac ?

