Hi All,
I would like to know how to create a folder using wMethods.
Thanking You.
Hi All,
I would like to know how to create a folder using wMethods.
Thanking You.
You can write a few lines of java code to do that.
Here, piece of java code to create folder:
File f = new File(“c:\foldername”);
if(f.exists()==false){
f.mkdirs();
}