Re: Is there really no wildcard adding for "jar -cvf my.jar classes\*.class" ?



"Catherina Svensson" <gremlin@xxxxxxxxxxx> wrote in message
news:48162a7a$0$7540$9b4e6d93@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
When I try to execute a jar command like the following:

jar -cvf my.jar classes\*.class

then JVM gives me an error about non-existing files/folders.

However when I specify all the class files in detail:

jar -cvf my.jar classes\a.class classes\b.class ..... classes\z.class

then everything is fine.

Is there really no flag/option to let users pass wildcards for jar adding
operations ?

Cat

The error presumably means what it says...there is no directory named
classes and/or no files with a .class extension, in the current directory.
Because otherwise you can certainly use wildcards.

AHS


.



Relevant Pages