1 import jcifs.smb.SmbFileOutputStream;2 3 public class CreateFile {4 5 public static void main( String argv[] ) throws Exception {6 7 SmbFileOutputStream out = new SmbFileOutputStream( argv[0], false );8 out.close();9 }10 }11 12