IBM webMethods Hybrid Integration

IBM webMethods Hybrid Integration

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.



#Automation


#Applicationintegration
#webMethods
#Integration
 View Only
  • 1.  NG A FOLDER USING wM

    Posted 03/14/12 11:57 AM

    Hi All,
    I would like to know how to create a folder using wMethods.

    Thanking You.


    #webMethods
    #Integration-Server-and-ESB
    #Flow-and-Java-services


  • 2.  RE: NG A FOLDER USING wM

    Posted 03/14/12 10:50 PM

    You can write a few lines of java code to do that.


    #Flow-and-Java-services
    #webMethods
    #Integration-Server-and-ESB


  • 3.  RE: NG A FOLDER USING wM

    Posted 03/15/12 11:40 AM

    Here, piece of java code to create folder:

    File f = new File(“c:\foldername”);
    if(f.exists()==false){
    f.mkdirs();
    }


    #Integration-Server-and-ESB
    #webMethods
    #Flow-and-Java-services