Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.
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(); }