warning: [path] Unexpected file on path:
Hi
I try to compile a lott of files with the command:
javac -classpath c:\ -sourcepath c:\test\*.java
And that gives the following warning:
warning: [path] Unexpected file on path: c:\test\AnalyzeAccNum.java
The result is that that file is not compiled.
And if I use javac to compile only that file it works.
Why isn't it compiling the first time? And how can I fixed it so that file will be compiled with all the other files.
Thanks in advance.

