Package org.springframework.integration.smb.session

Examples of org.springframework.integration.smb.session.SmbSession.mkdir()


    SmbSessionFactory smbSessionFactory = ac.getBean("smbSessionFactory", SmbSessionFactory.class);
    smbSessionFactory.setReplaceFile(true);
    SmbSession smbSession = smbSessionFactory.getSession();

    // place text files onto the share
    smbSession.mkdir(testRemoteDir);

    String[] fileNames = createTestFileNames(5);
    for (int i = 0; i < fileNames.length; i++) {
      smbSession.write(("File [" + fileNames[i] + "] written by test case [" + getMethodName() + "].").getBytes(), testRemoteDir + fileNames[i]);
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.