javadoc a folder
Is it possible to javadoc a folder and it will create documents for all java files in the folder and subfolder?
I had done this using a batch file, but would prefer not to use this.
E.g.
-c
--project
folder1
-package1
--package2
folder2
-package3
--package4
I'd like to specify project and javadoc would create all documentation for java files in package1-4 but there could be alot more folders.

