Package

Source Code of CreateFile

import jcifs.smb.SmbFileOutputStream;

public class CreateFile {

    public static void main( String argv[] ) throws Exception {

        SmbFileOutputStream out = new SmbFileOutputStream( argv[0], false );
        out.close();
    }
}
TOP

Related Classes of CreateFile

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.