I new to Python and am looking for a way to create my CLASSPATH
argument for Jython script in wsadmin for Websphere, by reading from a folder and including all jars in that folder.
Example :
/jar_dir
1.jar
2.jar
...
70.jar
CLASSPATH= INSTALL_PATH + "/jar_dir/1.jar;" + INSTALL_PATH + "/jar_dir/2.jar;" .... INSTALL_PATH + "/jar_dir/70.jar;"
How can I do this?