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 ?

[433 byte] By [PrabhuSai] at [2007-9-30 13:40:12]
# 1

Wildcards [*.java] will conpile matching java files in the specified directory.

To compile in multiple directories, use the @argfiles argument to the command.

See C:\j2sdk1.4.2_04\docs\tooldocs\windows\javac.html, especially the portion titled COMMAND LINE ARGUMENT FILES.

(note that wildcards can't be used in this option)

ChuckBing at 2007-7-4 22:36:06 > top of Java-index,Administration Tools,Sun Connection...